using System; using System.Collections.Generic; using System.Linq; using System.Text; 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; } } } }