103 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			103 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_LotOwnerGoods
 | |
| ///By wm  
 | |
| ///on 08/04/2023
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region LotOwnerGoods_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a LotOwnerGoods_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class LotOwnerGoods_base  : BaseModel { 
 | |
| 
 | |
|                        
 | |
|                     internal int _lotId,_OlotId;   
 | |
|                     internal int _ownerId,_OownerId;   
 | |
|                     internal string _goodsId = String.Empty,_OgoodsId= String.Empty;   
 | |
|                     internal int _Ooperater;   
 | |
|                     internal bool _enabled,_Oenabled;   
 | |
|                        
 | |
|                     internal string _createtime = String.Empty,_Ocreatetime= String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  LotOwnerGoods_base () {
 | |
| 		}
 | |
| 		public  LotOwnerGoods_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  LotOwnerGoods_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public LotOwnerGoods_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new LotOwnerGoods_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public  int   lotId{
 | |
| 			get {return _lotId;}
 | |
| 			 set {_lotId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   ownerId{
 | |
| 			get {return _ownerId;}
 | |
| 			 set {_ownerId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  goodsId{
 | |
| 			get {return _goodsId;}
 | |
| 			 set {_goodsId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   operater{
 | |
| 			get {return _operater;}
 | |
| 			 set {_operater = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  bool   enabled{
 | |
| 			get {return _enabled;}
 | |
| 			 set {_enabled = 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{lotId,ownerId,goodsId,operater,enabled}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |