97 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_RoleEmp
 | |
| ///By wm  
 | |
| ///on 08/04/2023
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region RoleEmp_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a RoleEmp_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class RoleEmp_base  : BaseModel { 
 | |
| 
 | |
|                        
 | |
|                     internal int _re_role,_Ore_role;   
 | |
|                     internal int _re_employee,_Ore_employee;   
 | |
|                     internal int _warehouse,_Owarehouse;   
 | |
|                     internal int _Ooperater;   
 | |
|                        
 | |
|                     internal string _create_time = String.Empty,_Ocreate_time= String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  RoleEmp_base () {
 | |
| 		}
 | |
| 		public  RoleEmp_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  RoleEmp_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public RoleEmp_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new RoleEmp_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public  int   re_role{
 | |
| 			get {return _re_role;}
 | |
| 			 set {_re_role = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   re_employee{
 | |
| 			get {return _re_employee;}
 | |
| 			 set {_re_employee = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   warehouse{
 | |
| 			get {return _warehouse;}
 | |
| 			 set {_warehouse = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   operater{
 | |
| 			get {return _operater;}
 | |
| 			 set {_operater = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  bool   dr{
 | |
| 			get {return _dr;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
|         public string  create_time{
 | |
| 			get {return _create_time;}
 | |
| 			 set {_create_time = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  lastmodified{
 | |
| 			get {return _lastmodified;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
| 		 
 | |
| 		#endregion
 | |
|                  
 | |
|       #region fieldNames 
 | |
|       public enum fields{re_role,re_employee,warehouse,operater}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |