29 lines
798 B
C#
29 lines
798 B
C#
using System.Collections.Generic;
|
|
using WMS.Model.Strategy;
|
|
using System.Data;
|
|
using WMS.IData;
|
|
using WMS.Common;
|
|
|
|
namespace WMS.Business.Strategy
|
|
{
|
|
public class BussDownStycts : IBussFactory
|
|
{
|
|
/// <summary>
|
|
/// 获取下架策略明细
|
|
/// </summary>
|
|
/// <returns>下架策略明细</returns>
|
|
public List<DownStyctsModel> GetDownStyctsList(DownStyctsModel model)
|
|
{
|
|
DataTable table = DataProvider.Instance.DownStycts.GetDownStyctsDT(model);
|
|
List<DownStyctsModel> DownStyctsModel = ConvertHelper<DownStyctsModel>.ConvertToList(table);
|
|
|
|
if (DataLogErrWrite(table, "获取下架策略明细"))
|
|
{
|
|
return DownStyctsModel;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
}
|
|
}
|