using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.ZGMil.Entity { /// /// 数据库表COM_BASE_QUALITY_OBJECTIVES所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2019-06-03 /// public class ComBaseQualityObjectivesEntity { /// /// 年 /// private string qqYear = ""; /// /// 类别代码 /// private string typeCode = ""; /// /// 部门ID /// private string departid = ""; /// /// 部门 /// private string departname = ""; /// /// 类别描述 /// private string typeDesc = ""; /// /// 管理科室代码 /// private string departmentCode = ""; /// /// 管理科室描述 /// private string departmentDesc = ""; /// /// 项目代码 /// private string projectCode = ""; /// /// 项目描述 /// private string projectDesc = ""; /// /// 指标 /// private string qqIndex = ""; /// /// 单位 /// private string qqUnit = ""; /// /// 计算方法 /// private string remarke = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 作废人 /// private string deleteName = ""; /// /// 作废时间 /// private string deleteTime = ""; private string sysGuid = ""; public string SysGuid { get { return sysGuid; } set { sysGuid = value; } } /// /// 年 /// [Description("年")] [Nullable(false)] [DataLength(4)] public string QqYear { get { return qqYear; } set { qqYear = value; } } /// /// 类别代码 /// [Description("类别")] [Nullable(false)] [DataLength(20)] public string TypeCode { get { return typeCode; } set { typeCode = value; } } /// /// 部门ID /// [Description("部门")] [Nullable(true)] [DataLength(30)] public string Departid { get { return departid; } set { departid = value; } } /// /// 部门 /// [Description("部门")] [Nullable(true)] [DataLength(50)] public string Departname { get { return departname; } set { departname = value; } } /// /// 类别描述 /// [Description("类别描述")] [Nullable(true)] [DataLength(20)] public string TypeDesc { get { return typeDesc; } set { typeDesc = value; } } /// /// 管理科室代码 /// [Description("单位")] [Nullable(false)] [DataLength(20)] public string DepartmentCode { get { return departmentCode; } set { departmentCode = value; } } /// /// 管理科室描述 /// [Description("单位")] [Nullable(true)] [DataLength(100)] public string DepartmentDesc { get { return departmentDesc; } set { departmentDesc = value; } } /// /// 项目代码 /// [Description("项目")] [Nullable(false)] [DataLength(20)] public string ProjectCode { get { return projectCode; } set { projectCode = value; } } /// /// 项目描述 /// [Description("项目描述")] [Nullable(true)] [DataLength(50)] public string ProjectDesc { get { return projectDesc; } set { projectDesc = value; } } /// /// 指标 /// [Description("指标")] [Nullable(true)] [DataLength(20)] public string QqIndex { get { return qqIndex; } set { qqIndex = value; } } /// /// 统计单位 /// [Description("统计单位")] [Nullable(true)] [DataLength(20)] public string QqUnit { get { return qqUnit; } set { qqUnit = value; } } /// /// 计算方法 /// [Description("计算方法")] [Nullable(true)] [DataLength(100)] public string Remarke { get { return remarke; } set { remarke = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 作废人 /// [Description("作废人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 作废时间 /// [Description("作废时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } } }