41 lines
		
	
	
		
			692 B
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			692 B
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///WCF Data Object 
 | |
| ///wcfList CLASS FOR TABLE t_erp_customer
 | |
| ///By wm  
 | |
| ///on 04/24/2022
 | |
| /// </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_customerList
 | |
|  
 | |
|     [DataContract]
 | |
| 	public class WcfErp_customerList {  
 | |
| 		
 | |
| 		public  WcfErp_customerList () {
 | |
| 		}
 | |
| 		 
 | |
|          [DataMember]
 | |
|         public List<WcfErp_customer> list;
 | |
| 		[DataMember]
 | |
| 		public int pageSize =0;
 | |
| 		[DataMember]
 | |
| 		public int page=0;
 | |
| 		[DataMember]
 | |
| 		public int pageCnt = 0;
 | |
| 		[DataMember]
 | |
| 		public int rows = 0;
 | |
| 	}
 | |
|     
 | |
|     
 | |
|     
 | |
| 	#endregion
 | |
| }
 |