181 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			181 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_wmsReceiveDetail
 | |
| ///By wm  
 | |
| ///on 06/30/2017
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region WmsReceiveDetail_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a WmsReceiveDetail_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class WmsReceiveDetail_base  : BaseModel { 
 | |
| 
 | |
|                        
 | |
|                     internal string _orderNo = String.Empty;   
 | |
|                     internal string _goodsId = String.Empty;   
 | |
|                     internal string _batch = String.Empty;   
 | |
|                     internal string _productDate = String.Empty;   
 | |
|                     internal string _valideDate = String.Empty;   
 | |
|                     internal decimal _purCount;   
 | |
|                     internal decimal _arriveCount;   
 | |
|                     internal decimal _receiveCount;   
 | |
|                     internal decimal _checkCount;   
 | |
|                     internal string _rejectReason = String.Empty;   
 | |
|                     internal string _receiveDate = String.Empty;   
 | |
|                     internal string _receivedby = String.Empty;   
 | |
|                     internal int _state;   
 | |
|                     internal int _batchState;   
 | |
|                     internal int _picState;   
 | |
|                     internal string _receiveResult = String.Empty;   
 | |
|                     internal string _description = String.Empty;   
 | |
|                        
 | |
|                        
 | |
|                     internal string _createtime = String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  WmsReceiveDetail_base () {
 | |
| 		}
 | |
| 		public  WmsReceiveDetail_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  WmsReceiveDetail_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public WmsReceiveDetail_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new WmsReceiveDetail_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public string  orderNo{
 | |
| 			get {return _orderNo;}
 | |
| 			 set {_orderNo = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  goodsId{
 | |
| 			get {return _goodsId;}
 | |
| 			 set {_goodsId = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  batch{
 | |
| 			get {return _batch;}
 | |
| 			 set {_batch = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  productDate{
 | |
| 			get {return _productDate;}
 | |
| 			 set {_productDate = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  valideDate{
 | |
| 			get {return _valideDate;}
 | |
| 			 set {_valideDate = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   purCount{
 | |
| 			get {return _purCount;}
 | |
| 			 set {_purCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   arriveCount{
 | |
| 			get {return _arriveCount;}
 | |
| 			 set {_arriveCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   receiveCount{
 | |
| 			get {return _receiveCount;}
 | |
| 			 set {_receiveCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   checkCount{
 | |
| 			get {return _checkCount;}
 | |
| 			 set {_checkCount = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  rejectReason{
 | |
| 			get {return _rejectReason;}
 | |
| 			 set {_rejectReason = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  receiveDate{
 | |
| 			get {return _receiveDate;}
 | |
| 			 set {_receiveDate = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  receivedby{
 | |
| 			get {return _receivedby;}
 | |
| 			 set {_receivedby = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   state{
 | |
| 			get {return _state;}
 | |
| 			 set {_state = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   batchState{
 | |
| 			get {return _batchState;}
 | |
| 			 set {_batchState = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   picState{
 | |
| 			get {return _picState;}
 | |
| 			 set {_picState = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  receiveResult{
 | |
| 			get {return _receiveResult;}
 | |
| 			 set {_receiveResult = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  description{
 | |
| 			get {return _description;}
 | |
| 			 set {_description = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   operater{
 | |
| 			get {return _operater;}
 | |
| 			 set {_operater = 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{orderNo,goodsId,batch,productDate,valideDate,purCount,arriveCount,receiveCount,checkCount,rejectReason,receiveDate,receivedby,state,batchState,picState,receiveResult,description,operater}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |