133 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			133 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_erp_purch_receive_log
 | |
| ///By wm  
 | |
| ///on 08/04/2023
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region Erp_purch_receive_log_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a Erp_purch_receive_log_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class Erp_purch_receive_log_base  : BaseModel { 
 | |
| 
 | |
|                        
 | |
|                     internal string _preInOrder = String.Empty,_OpreInOrder= String.Empty;   
 | |
|                     internal string _pur_order = String.Empty,_Opur_order= String.Empty;   
 | |
|                     internal int _purch_d_id,_Opurch_d_id;   
 | |
|                     internal int _shipId,_OshipId;   
 | |
|                     internal decimal _arriveCount,_OarriveCount;   
 | |
|                     internal decimal _receiveCount,_OreceiveCount;   
 | |
|                     internal decimal _rejectCount,_OrejectCount;   
 | |
|                     internal decimal _temperature,_Otemperature;   
 | |
|                     internal string _receiveRemark = String.Empty,_OreceiveRemark= String.Empty;   
 | |
|                     internal int _Ooperater;   
 | |
|                        
 | |
|                     internal string _createtime = String.Empty,_Ocreatetime= String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  Erp_purch_receive_log_base () {
 | |
| 		}
 | |
| 		public  Erp_purch_receive_log_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  Erp_purch_receive_log_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public Erp_purch_receive_log_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new Erp_purch_receive_log_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public string  preInOrder{
 | |
| 			get {return _preInOrder;}
 | |
| 			 set {_preInOrder = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pur_order{
 | |
| 			get {return _pur_order;}
 | |
| 			 set {_pur_order = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   purch_d_id{
 | |
| 			get {return _purch_d_id;}
 | |
| 			 set {_purch_d_id = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   shipId{
 | |
| 			get {return _shipId;}
 | |
| 			 set {_shipId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   arriveCount{
 | |
| 			get {return _arriveCount;}
 | |
| 			 set {_arriveCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   receiveCount{
 | |
| 			get {return _receiveCount;}
 | |
| 			 set {_receiveCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   rejectCount{
 | |
| 			get {return _rejectCount;}
 | |
| 			 set {_rejectCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   temperature{
 | |
| 			get {return _temperature;}
 | |
| 			 set {_temperature = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  receiveRemark{
 | |
| 			get {return _receiveRemark;}
 | |
| 			 set {_receiveRemark = 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{preInOrder,pur_order,purch_d_id,shipId,arriveCount,receiveCount,rejectCount,temperature,receiveRemark,operater}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |