229 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			229 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			C#
		
	
	
	
/// <summary>
 | 
						|
///Data Object 
 | 
						|
///BASIC CLASS FOR TABLE t_wmsOutPickDetail
 | 
						|
///By wm  
 | 
						|
///on 06/30/2017
 | 
						|
/// </summary>
 | 
						|
 
 | 
						|
using System;
 | 
						|
using System.Data;
 | 
						|
using DeiNiu.Data.BaseObject;
 | 
						|
 
 | 
						|
namespace  DeiNiu.wms.Data.Model
 | 
						|
{
 | 
						|
 | 
						|
	#region WmsOutPickDetail_base
 | 
						|
	/// <summary>
 | 
						|
	/// This object represents the properties and methods of a WmsOutPickDetail_base.
 | 
						|
    /// </summary>
 | 
						|
    [Serializable]
 | 
						|
	public class WmsOutPickDetail_base  : BaseModel { 
 | 
						|
 | 
						|
                       
 | 
						|
                    internal string _pickOrderNo = String.Empty;   
 | 
						|
                    internal string _customerId = String.Empty;   
 | 
						|
                    internal string _customerName = String.Empty;   
 | 
						|
                    internal string _custAddress = String.Empty;   
 | 
						|
                    internal string _goodsId = String.Empty;   
 | 
						|
                    internal string _batch = String.Empty;   
 | 
						|
                    internal decimal _count;   
 | 
						|
                    internal decimal _bulkCount;   
 | 
						|
                    internal decimal _batch1Count;   
 | 
						|
                    internal decimal _batch2Count;   
 | 
						|
                    internal int _boxcnt;   
 | 
						|
                    internal string _productDate = String.Empty;   
 | 
						|
                    internal string _validDate = String.Empty;   
 | 
						|
                    internal int _state;   
 | 
						|
                    internal int _bulkPickState;   
 | 
						|
                    internal int _batchPickState;   
 | 
						|
                    internal int _whtype;   
 | 
						|
                    internal string _description = String.Empty;   
 | 
						|
                    internal decimal _confirmedCount;   
 | 
						|
                    internal int _checkedBy;   
 | 
						|
                    internal int _validReason;   
 | 
						|
                    internal int _validSolution;   
 | 
						|
                    internal string _validRemark = String.Empty;   
 | 
						|
                    internal string _solutionRemark = String.Empty;   
 | 
						|
                    internal string _checkedTime = String.Empty;   
 | 
						|
                       
 | 
						|
                       
 | 
						|
                    internal string _createtime = String.Empty;   
 | 
						|
                       
 | 
						|
		
 | 
						|
		public  WmsOutPickDetail_base () {
 | 
						|
		}
 | 
						|
		public  WmsOutPickDetail_base (int id) {
 | 
						|
			_id=id;
 | 
						|
			getModel();
 | 
						|
		}
 | 
						|
		public  WmsOutPickDetail_base(DataRow dr)
 | 
						|
        {
 | 
						|
            getModel(dr);
 | 
						|
        }
 | 
						|
          public WmsOutPickDetail_base(System.Data.SqlClient.SqlConnection _Conn)
 | 
						|
            : base(_Conn) 
 | 
						|
        {
 | 
						|
 | 
						|
        }
 | 
						|
          protected override void getImp()
 | 
						|
        {
 | 
						|
            model_imp = new WmsOutPickDetail_base_Imp();  
 | 
						|
        }
 | 
						|
		#region Public Properties 
 | 
						|
        public string  pickOrderNo{
 | 
						|
			get {return _pickOrderNo;}
 | 
						|
			 set {_pickOrderNo = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  customerId{
 | 
						|
			get {return _customerId;}
 | 
						|
			 set {_customerId = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  customerName{
 | 
						|
			get {return _customerName;}
 | 
						|
			 set {_customerName = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  custAddress{
 | 
						|
			get {return _custAddress;}
 | 
						|
			 set {_custAddress = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  goodsId{
 | 
						|
			get {return _goodsId;}
 | 
						|
			 set {_goodsId = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  batch{
 | 
						|
			get {return _batch;}
 | 
						|
			 set {_batch = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  decimal   count{
 | 
						|
			get {return _count;}
 | 
						|
			 set {_count = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  decimal   bulkCount{
 | 
						|
			get {return _bulkCount;}
 | 
						|
			 set {_bulkCount = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  decimal   batch1Count{
 | 
						|
			get {return _batch1Count;}
 | 
						|
			 set {_batch1Count = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  decimal   batch2Count{
 | 
						|
			get {return _batch2Count;}
 | 
						|
			 set {_batch2Count = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   boxcnt{
 | 
						|
			get {return _boxcnt;}
 | 
						|
			 set {_boxcnt = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  productDate{
 | 
						|
			get {return _productDate;}
 | 
						|
			 set {_productDate = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  validDate{
 | 
						|
			get {return _validDate;}
 | 
						|
			 set {_validDate = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   state{
 | 
						|
			get {return _state;}
 | 
						|
			 set {_state = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   bulkPickState{
 | 
						|
			get {return _bulkPickState;}
 | 
						|
			 set {_bulkPickState = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   batchPickState{
 | 
						|
			get {return _batchPickState;}
 | 
						|
			 set {_batchPickState = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   whtype{
 | 
						|
			get {return _whtype;}
 | 
						|
			 set {_whtype = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  description{
 | 
						|
			get {return _description;}
 | 
						|
			 set {_description = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  decimal   confirmedCount{
 | 
						|
			get {return _confirmedCount;}
 | 
						|
			 set {_confirmedCount = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   checkedBy{
 | 
						|
			get {return _checkedBy;}
 | 
						|
			 set {_checkedBy = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   validReason{
 | 
						|
			get {return _validReason;}
 | 
						|
			 set {_validReason = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public  int   validSolution{
 | 
						|
			get {return _validSolution;}
 | 
						|
			 set {_validSolution = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  validRemark{
 | 
						|
			get {return _validRemark;}
 | 
						|
			 set {_validRemark = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  solutionRemark{
 | 
						|
			get {return _solutionRemark;}
 | 
						|
			 set {_solutionRemark = value;}    
 | 
						|
		}  
 | 
						|
        
 | 
						|
        public string  checkedTime{
 | 
						|
			get {return _checkedTime;}
 | 
						|
			 set {_checkedTime = 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{pickOrderNo,customerId,customerName,custAddress,goodsId,batch,count,bulkCount,batch1Count,batch2Count,boxcnt,productDate,validDate,state,bulkPickState,batchPickState,whtype,description,confirmedCount,checkedBy,validReason,validSolution,validRemark,solutionRemark,checkedTime,operater}
 | 
						|
      #endregion
 | 
						|
    
 | 
						|
	
 | 
						|
	}
 | 
						|
	#endregion
 | 
						|
}
 |