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