92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
		
		
			
		
	
	
			92 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
|  | using System; | |||
|  | using System.Collections.Generic; | |||
|  | using System.Linq; | |||
|  | using System.Text; | |||
|  | using System.Threading.Tasks; | |||
|  | 
 | |||
|  | namespace Model | |||
|  | { | |||
|  |     public class WBSSetInitItem | |||
|  |     { | |||
|  |         private string code; | |||
|  |         /// <summary> | |||
|  |         /// 主键 | |||
|  |         /// </summary> | |||
|  |         public string Code | |||
|  |         { | |||
|  |             get { return code; } | |||
|  |             set { code = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private string name; | |||
|  |         /// <summary> | |||
|  |         /// 名称 | |||
|  |         /// </summary> | |||
|  |         public string Name | |||
|  |         { | |||
|  |             get { return name; } | |||
|  |             set { name = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private string controlPoint; | |||
|  |         /// <summary> | |||
|  |         /// 等级 | |||
|  |         /// </summary> | |||
|  |         public string ControlPoint | |||
|  |         { | |||
|  |             get { return controlPoint; } | |||
|  |             set { controlPoint = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private string controlItemDef; | |||
|  |         /// <summary> | |||
|  |         /// 内容 | |||
|  |         /// </summary> | |||
|  |         public string ControlItemDef | |||
|  |         { | |||
|  |             get { return controlItemDef; } | |||
|  |             set { controlItemDef = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private string remark; | |||
|  |         /// <summary> | |||
|  |         /// 描述 | |||
|  |         /// </summary> | |||
|  |         public string Remark | |||
|  |         { | |||
|  |             get { return remark; } | |||
|  |             set { remark = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private string type; | |||
|  |         /// <summary> | |||
|  |         /// 类别 | |||
|  |         /// </summary> | |||
|  |         public string Type | |||
|  |         { | |||
|  |             get { return type; } | |||
|  |             set { type = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private DateTime? startDate; | |||
|  |         /// <summary> | |||
|  |         /// 计划开始日期 | |||
|  |         /// </summary> | |||
|  |         public DateTime? StartDate | |||
|  |         { | |||
|  |             get { return startDate; } | |||
|  |             set { startDate = value; } | |||
|  |         } | |||
|  | 
 | |||
|  |         private DateTime? endDate; | |||
|  |         /// <summary> | |||
|  |         /// 计划结束日期 | |||
|  |         /// </summary> | |||
|  |         public DateTime? EndDate | |||
|  |         { | |||
|  |             get { return endDate; } | |||
|  |             set { endDate = value; } | |||
|  |         } | |||
|  |     } | |||
|  | } |