43 lines
784 B
C#
43 lines
784 B
C#
/// <summary>
|
|
///WCF Data Object
|
|
///wcfList CLASS FOR TABLE t_erp_purch_receive_log
|
|
///By wm
|
|
///on 06/07/2023
|
|
/// </summary>
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Runtime.Serialization;
|
|
using System.Data;
|
|
namespace DeiNiu.wms.Data.Model.Wcf
|
|
{
|
|
|
|
#region WcfErp_purch_receive_logList
|
|
|
|
[DataContract]
|
|
public class WcfErp_purch_receive_logList {
|
|
|
|
public WcfErp_purch_receive_logList () {
|
|
}
|
|
|
|
[DataMember]
|
|
public List<WcfErp_purch_receive_log> list;
|
|
[DataMember]
|
|
public int pageSize =0;
|
|
[DataMember]
|
|
public int page=0;
|
|
[DataMember]
|
|
public int pageCnt = 0;
|
|
[DataMember]
|
|
public int rows = 0;
|
|
[DataMember]
|
|
public string error="";
|
|
}
|
|
|
|
|
|
|
|
#endregion
|
|
}
|