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

25 lines
765 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 BussStrAreaRepGoods : IBussFactory
{
/// <summary>
/// 获取库区间定时补货策略商品明细
/// </summary>
/// <returns>库区间定时补货策略商品明细</returns>
public List<StrAreaRepGoodsModel> GetStrAreaRepGoodsList(StrAreaRepGoodsModel model)
{
DataTable table = DataProvider.Instance.StrAreaRepGoods.GetStrAreaRepGoodsDT(model);
List<StrAreaRepGoodsModel> StrAreaRepGoodsModel = ConvertHelper<StrAreaRepGoodsModel>.ConvertToList(table);
return StrAreaRepGoodsModel;
}
}
}