138 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			138 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C#
		
	
	
	
| /// <summary>
 | |
| ///Data Object 
 | |
| ///BASIC CLASS FOR TABLE t_ProjectDetail
 | |
| ///By wm  
 | |
| ///on 08/04/2023
 | |
| /// </summary>
 | |
|  
 | |
| using System;
 | |
| using System.Data;
 | |
| using DeiNiu.Data.BaseObject;
 | |
|  
 | |
| namespace  DeiNiu.wms.Data.Model
 | |
| {
 | |
| 
 | |
| 	#region ProjectDetail_base
 | |
| 	/// <summary>
 | |
| 	/// This object represents the properties and methods of a ProjectDetail_base.
 | |
|     /// </summary>
 | |
|     [Serializable]
 | |
| 	public class ProjectDetail_base  : BaseModel { 
 | |
| 
 | |
|                     internal int _pk_projDetail,_Opk_projDetail;   
 | |
|                     internal int _pd_project,_Opd_project;   
 | |
|                     internal string _pd_year = String.Empty,_Opd_year= String.Empty;   
 | |
|                     internal string _pd_month = String.Empty,_Opd_month= String.Empty;   
 | |
|                     internal string _pd_planTarget = String.Empty,_Opd_planTarget= String.Empty;   
 | |
|                     internal string _pd_finishedTarget = String.Empty,_Opd_finishedTarget= String.Empty;   
 | |
|                     internal int _pd_percent,_Opd_percent;   
 | |
|                     internal string _pd_status = String.Empty,_Opd_status= String.Empty;   
 | |
|                     internal decimal _pd_score,_Opd_score;   
 | |
|                     internal string _pd_mem = String.Empty,_Opd_mem= String.Empty;   
 | |
|                        
 | |
|                     internal int _Ooperater;   
 | |
|                     internal string _create_time = String.Empty,_Ocreate_time= String.Empty;   
 | |
|                        
 | |
| 		
 | |
| 		public  ProjectDetail_base () {
 | |
| 		}
 | |
| 		public  ProjectDetail_base (int id) {
 | |
| 			_id=id;
 | |
| 			getModel();
 | |
| 		}
 | |
| 		public  ProjectDetail_base(DataRow dr)
 | |
|         {
 | |
|             getModel(dr);
 | |
|         }
 | |
|           public ProjectDetail_base(System.Data.SqlClient.SqlConnection _Conn)
 | |
|             : base(_Conn) 
 | |
|         {
 | |
| 
 | |
|         }
 | |
|           protected override void getImp()
 | |
|         {
 | |
|             model_imp = new ProjectDetail_base_Imp();  
 | |
|         }
 | |
| 		#region Public Properties 
 | |
|         public  int   pk_projDetail{
 | |
| 			get {return _pk_projDetail;}
 | |
| 			 set {_pk_projDetail = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pd_project{
 | |
| 			get {return _pd_project;}
 | |
| 			 set {_pd_project = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_year{
 | |
| 			get {return _pd_year;}
 | |
| 			 set {_pd_year = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_month{
 | |
| 			get {return _pd_month;}
 | |
| 			 set {_pd_month = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_planTarget{
 | |
| 			get {return _pd_planTarget;}
 | |
| 			 set {_pd_planTarget = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_finishedTarget{
 | |
| 			get {return _pd_finishedTarget;}
 | |
| 			 set {_pd_finishedTarget = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  int   pd_percent{
 | |
| 			get {return _pd_percent;}
 | |
| 			 set {_pd_percent = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_status{
 | |
| 			get {return _pd_status;}
 | |
| 			 set {_pd_status = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  decimal   pd_score{
 | |
| 			get {return _pd_score;}
 | |
| 			 set {_pd_score = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  pd_mem{
 | |
| 			get {return _pd_mem;}
 | |
| 			 set {_pd_mem = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public  bool   dr{
 | |
| 			get {return _dr;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
|         public  int   operater{
 | |
| 			get {return _operater;}
 | |
| 			 set {_operater = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  create_time{
 | |
| 			get {return _create_time;}
 | |
| 			 set {_create_time = value;}    
 | |
| 		}  
 | |
|         
 | |
|         public string  lastmodified{
 | |
| 			get {return _lastmodified;}
 | |
| 			   
 | |
| 		}  
 | |
|         
 | |
| 		 
 | |
| 		#endregion
 | |
|                  
 | |
|       #region fieldNames 
 | |
|       public enum fields{pk_projDetail,pd_project,pd_year,pd_month,pd_planTarget,pd_finishedTarget,pd_percent,pd_status,pd_score,pd_mem,operater}
 | |
|       #endregion
 | |
|     
 | |
| 	
 | |
| 	}
 | |
| 	#endregion
 | |
| }
 |