109 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			109 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C#
		
	
	
	
| 
								 | 
							
								/// <summary>
							 | 
						|||
| 
								 | 
							
								///Data Object 
							 | 
						|||
| 
								 | 
							
								///BASIC CLASS FOR TABLE t_wmsDeskCustomer
							 | 
						|||
| 
								 | 
							
								///By wm  
							 | 
						|||
| 
								 | 
							
								///on 07/21/2019
							 | 
						|||
| 
								 | 
							
								/// </summary>
							 | 
						|||
| 
								 | 
							
								 
							 | 
						|||
| 
								 | 
							
								using System;
							 | 
						|||
| 
								 | 
							
								using System.Data;
							 | 
						|||
| 
								 | 
							
								using DeiNiu.Data.BaseObject;
							 | 
						|||
| 
								 | 
							
								 
							 | 
						|||
| 
								 | 
							
								namespace  DeiNiu.wms.Data.Model
							 | 
						|||
| 
								 | 
							
								{
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
									#region WmsDeskCustomer_base
							 | 
						|||
| 
								 | 
							
									/// <summary>
							 | 
						|||
| 
								 | 
							
									/// This object represents the properties and methods of a WmsDeskCustomer_base.
							 | 
						|||
| 
								 | 
							
								    /// </summary>
							 | 
						|||
| 
								 | 
							
								    [Serializable]
							 | 
						|||
| 
								 | 
							
									public class WmsDeskCustomer_base  : BaseModel { 
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								                       
							 | 
						|||
| 
								 | 
							
								                    internal int _deskId;   
							 | 
						|||
| 
								 | 
							
								                    internal int _custid;   
							 | 
						|||
| 
								 | 
							
								                    internal string _custName = String.Empty;   
							 | 
						|||
| 
								 | 
							
								                    internal string _deskName = String.Empty;   
							 | 
						|||
| 
								 | 
							
								                    internal int _portNo;   
							 | 
						|||
| 
								 | 
							
								                       
							 | 
						|||
| 
								 | 
							
								                       
							 | 
						|||
| 
								 | 
							
								                    internal string _createtime = String.Empty;   
							 | 
						|||
| 
								 | 
							
								                       
							 | 
						|||
| 
								 | 
							
										
							 | 
						|||
| 
								 | 
							
										public  WmsDeskCustomer_base () {
							 | 
						|||
| 
								 | 
							
										}
							 | 
						|||
| 
								 | 
							
										public  WmsDeskCustomer_base (int id) {
							 | 
						|||
| 
								 | 
							
											_id=id;
							 | 
						|||
| 
								 | 
							
											getModel();
							 | 
						|||
| 
								 | 
							
										}
							 | 
						|||
| 
								 | 
							
										public  WmsDeskCustomer_base(DataRow dr)
							 | 
						|||
| 
								 | 
							
								        {
							 | 
						|||
| 
								 | 
							
								            getModel(dr);
							 | 
						|||
| 
								 | 
							
								        }
							 | 
						|||
| 
								 | 
							
								          public WmsDeskCustomer_base(System.Data.SqlClient.SqlConnection _Conn)
							 | 
						|||
| 
								 | 
							
								            : base(_Conn) 
							 | 
						|||
| 
								 | 
							
								        {
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								        }
							 | 
						|||
| 
								 | 
							
								          protected override void getImp()
							 | 
						|||
| 
								 | 
							
								        {
							 | 
						|||
| 
								 | 
							
								            model_imp = new WmsDeskCustomer_base_Imp();  
							 | 
						|||
| 
								 | 
							
								        }
							 | 
						|||
| 
								 | 
							
										#region Public Properties 
							 | 
						|||
| 
								 | 
							
								        public  int   deskId{
							 | 
						|||
| 
								 | 
							
											get {return _deskId;}
							 | 
						|||
| 
								 | 
							
											 set {_deskId = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public  int   custid{
							 | 
						|||
| 
								 | 
							
											get {return _custid;}
							 | 
						|||
| 
								 | 
							
											 set {_custid = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public string  custName{
							 | 
						|||
| 
								 | 
							
											get {return _custName;}
							 | 
						|||
| 
								 | 
							
											 set {_custName = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public string  deskName{
							 | 
						|||
| 
								 | 
							
											get {return _deskName;}
							 | 
						|||
| 
								 | 
							
											 set {_deskName = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public  int   portNo{
							 | 
						|||
| 
								 | 
							
											get {return _portNo;}
							 | 
						|||
| 
								 | 
							
											 set {_portNo = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public  int   operater{
							 | 
						|||
| 
								 | 
							
											get {return _operater;}
							 | 
						|||
| 
								 | 
							
											 set {_operater = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public  bool   dr{
							 | 
						|||
| 
								 | 
							
											get {return _dr;}
							 | 
						|||
| 
								 | 
							
											   
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public string  createtime{
							 | 
						|||
| 
								 | 
							
											get {return _createtime;}
							 | 
						|||
| 
								 | 
							
											 set {_createtime = value;}    
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
								        public string  lastmodified{
							 | 
						|||
| 
								 | 
							
											get {return _lastmodified;}
							 | 
						|||
| 
								 | 
							
											   
							 | 
						|||
| 
								 | 
							
										}  
							 | 
						|||
| 
								 | 
							
								        
							 | 
						|||
| 
								 | 
							
										 
							 | 
						|||
| 
								 | 
							
										#endregion
							 | 
						|||
| 
								 | 
							
								                 
							 | 
						|||
| 
								 | 
							
								      #region fieldNames 
							 | 
						|||
| 
								 | 
							
								      public enum fields{deskId,custid,custName,deskName,portNo,operater}
							 | 
						|||
| 
								 | 
							
								      #endregion
							 | 
						|||
| 
								 | 
							
								    
							 | 
						|||
| 
								 | 
							
									
							 | 
						|||
| 
								 | 
							
									}
							 | 
						|||
| 
								 | 
							
									#endregion
							 | 
						|||
| 
								 | 
							
								}
							 |