121 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_Customer
 | |
| ///By wm  
 | |
| ///on 08/17/2023
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region Customer_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a Customer_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class Customer_base  : BaseModel { 
 | |
| 
 | |
|                        
 | |
|                     internal string _customerId = String.Empty,_OcustomerId= String.Empty;   
 | |
|                     internal int _custType,_OcustType;   
 | |
|                     internal int _pickType,_OpickType;   
 | |
|                     internal int _pickGroup,_OpickGroup;   
 | |
|                     internal int _pickStartOn,_OpickStartOn;   
 | |
|                     internal int _pickInterval,_OpickInterval;   
 | |
|                     internal string _lastOutTime = String.Empty,_OlastOutTime= String.Empty;   
 | |
|                     internal int _Ooperater;   
 | |
|                        
 | |
|                     internal string _createtime = String.Empty,_Ocreatetime= String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  Customer_base () {
 | |
| 		}
 | |
| 		public  Customer_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  Customer_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public Customer_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new Customer_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public string  customerId{
 | |
| 			get {return _customerId;}
 | |
| 			 set {_customerId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   custType{
 | |
| 			get {return _custType;}
 | |
| 			 set {_custType = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pickType{
 | |
| 			get {return _pickType;}
 | |
| 			 set {_pickType = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pickGroup{
 | |
| 			get {return _pickGroup;}
 | |
| 			 set {_pickGroup = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pickStartOn{
 | |
| 			get {return _pickStartOn;}
 | |
| 			 set {_pickStartOn = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pickInterval{
 | |
| 			get {return _pickInterval;}
 | |
| 			 set {_pickInterval = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  lastOutTime{
 | |
| 			get {return _lastOutTime;}
 | |
| 			 set {_lastOutTime = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   operater{
 | |
| 			get {return _operater;}
 | |
| 			 set {_operater = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  lastmodified{
 | |
| 			get {return _lastmodified;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
|         public string  createtime{
 | |
| 			get {return _createtime;}
 | |
| 			 set {_createtime = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  bool   dr{
 | |
| 			get {return _dr;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
| 		 
 | |
| 		#endregion
 | |
|                  
 | |
|       #region fieldNames 
 | |
|       public enum fields{customerId,custType,pickType,pickGroup,pickStartOn,pickInterval,lastOutTime,operater}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |