51 lines
896 B
C#
51 lines
896 B
C#
|
|
/// <summary>
|
|
///INTERFACE CLASS FOR TABLE t_wmsOutLog
|
|
///By wm
|
|
///on 06/23/2017
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Data;
|
|
|
|
namespace DeiNiu.wms.Data.Model
|
|
{
|
|
[Serializable]
|
|
public class WmsOutLog : WmsOutLog_base
|
|
{
|
|
public WmsOutLog()
|
|
{
|
|
|
|
}
|
|
|
|
public WmsOutLog(int id): base(id)
|
|
{
|
|
|
|
}
|
|
public WmsOutLog(DataRow dr): base(dr)
|
|
{
|
|
|
|
}
|
|
protected override void getImp()
|
|
{
|
|
model_imp = new WmsOutLog_Imp();
|
|
}
|
|
|
|
//begin cust db operation, query, excute sql etc.
|
|
public DataTable getOrderLogs(string orderNo, string pickOrderNo)
|
|
{
|
|
cmdParameters[0] = orderNo;
|
|
cmdParameters[1] = pickOrderNo;
|
|
return CustQuery(100).Tables[0];
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|