121 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			C#
		
	
	
	
/// <summary>
 | 
						|
///Data Object 
 | 
						|
///BASIC CLASS FOR TABLE t_wmsDeskCustomer
 | 
						|
///By wm  
 | 
						|
///on 03-24-2022
 | 
						|
/// </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 _partion,_Opartion;   
 | 
						|
                    internal int _deskId,_OdeskId;   
 | 
						|
                    internal int _custid,_Ocustid;   
 | 
						|
                    internal string _custName = String.Empty,_OcustName= String.Empty;   
 | 
						|
                    internal string _partionName = String.Empty,_OpartionName= String.Empty;   
 | 
						|
                    internal string _mem = String.Empty,_Omem= String.Empty;   
 | 
						|
                    internal int _portNo,_OportNo;   
 | 
						|
                    internal int _Ooperater;   
 | 
						|
                       
 | 
						|
                    internal string _createtime = String.Empty,_Ocreatetime= 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   partion{
 | 
						|
			get {return _partion;}
 | 
						|
			 set {_partion = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        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  partionName{
 | 
						|
			get {return _partionName;}
 | 
						|
			 set {_partionName = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  mem{
 | 
						|
			get {return _mem;}
 | 
						|
			 set {_mem = 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{partion,deskId,custid,custName,partionName,mem,portNo,operater}
 | 
						|
      #endregion
 | 
						|
    
 | 
						|
	
 | 
						|
	}
 | 
						|
	#endregion
 | 
						|
}
 |