2023-05-23 16:13:17 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
///WCF Data Object
|
|
|
|
|
///wcfList CLASS FOR TABLE t_erp_sale
|
|
|
|
|
///By wm
|
2023-09-04 22:41:19 +08:00
|
|
|
|
///on 06/06/2023
|
2023-05-23 16:13:17 +08:00
|
|
|
|
/// </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_saleList
|
|
|
|
|
|
|
|
|
|
[DataContract]
|
|
|
|
|
public class WcfErp_saleList {
|
|
|
|
|
|
|
|
|
|
public WcfErp_saleList () {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[DataMember]
|
|
|
|
|
public List<WcfErp_sale> list;
|
|
|
|
|
[DataMember]
|
|
|
|
|
public int pageSize =0;
|
|
|
|
|
[DataMember]
|
|
|
|
|
public int page=0;
|
|
|
|
|
[DataMember]
|
|
|
|
|
public int pageCnt = 0;
|
|
|
|
|
[DataMember]
|
|
|
|
|
public int rows = 0;
|
2023-09-04 22:41:19 +08:00
|
|
|
|
[DataMember]
|
|
|
|
|
public string error="";
|
2023-05-23 16:13:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|