BaoKai_202508-Wms-Jingwang..../WMS.Business/Strategy/BussStrAreaRepStorage.cs

29 lines
949 B
C#
Raw Normal View History

2025-08-24 09:35:55 +08:00
using System.Collections.Generic;
using WMS.Model.Strategy;
using System.Data;
using WMS.IData;
using WMS.Common;
namespace WMS.Business.Strategy
{
public class BussStrAreaRepStorage : IBussFactory
{
/// <summary>
/// 获取库区间定时补货策略仓库库区明细
/// </summary>
/// <returns>库区间定时补货策略仓库库区明细</returns>
public List<StrAreaRepStorageModel> GetStrAreaRepStorageList(StrAreaRepStorageModel model)
{
DataTable table = DataProvider.Instance.StrAreaRepStorage.GetStrAreaRepStorageDT(model);
List<StrAreaRepStorageModel> StrAreaRepStorageModel = ConvertHelper<StrAreaRepStorageModel>.ConvertToList(table);
if (DataLogErrWrite(table, "获取库区间定时补货策略仓库库区明细"))
{
return StrAreaRepStorageModel;
}
return null;
}
}
}