ldj/Model/wms/tables/WmsStockPandianResult.cs

52 lines
1.2 KiB
C#
Raw Normal View History

2023-05-23 16:13:17 +08:00

/// <summary>
///INTERFACE CLASS FOR TABLE t_wmsStockPandianResult
///By wm
///on 07/30/2018
/// </summary>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace DeiNiu.wms.Data.Model
{
[Serializable]
public class WmsStockPandianResult : WmsStockPandianResult_base
{
public WmsStockPandianResult()
{
}
2024-02-06 19:36:47 +08:00
public WmsStockPandianResult(string orderNo,string locationId,int skuId,string goodsId)
2023-05-23 16:13:17 +08:00
{
cmdParameters[0] = orderNo;
cmdParameters[1] = locationId;
cmdParameters[2] = skuId;
2024-02-06 19:36:47 +08:00
cmdParameters[3] = goodsId;
2023-05-23 16:13:17 +08:00
getModel(100);
}
public WmsStockPandianResult(int id): base(id)
{
}
public WmsStockPandianResult(DataRow dr): base(dr)
{
}
protected override void getImp()
{
model_imp = new WmsStockPandianResult_Imp();
}
public DataTable getPandianItem(string orderNo, string locationId)
{
cmdParameters[0] = orderNo;
cmdParameters[1] = locationId;
2023-11-21 19:18:23 +08:00
return CustQuery(200).Tables[0];
2023-05-23 16:13:17 +08:00
}
}
}