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.Mcp.Entity { /// /// 数据库表QCM_ADD_ASK所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2019-01-09 /// public class QcmAddAskEntity { /// /// 申请判定单号 /// private string jugdeApplyCode = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 附加要求项 /// private string askItme = ""; /// /// 附加要求项名称 /// private string askItmeDesc = ""; /// /// 附加要求分项 /// private string askSubItme = ""; /// /// 附加要求分项描述 /// private string askSubItmeDesc = ""; /// /// 标准说明 /// private string askSubItmeVal = ""; /// /// 标准说明描述 /// private string askSubItmeValDesc = ""; /// /// 是否确认(0 未确认 1已确认) /// private string askIsComfrim = ""; /// /// 执行标准说明 /// private string askValDesc = ""; /// /// 确认人 /// private string comfrimName = ""; /// /// 确认时间 /// private string comfrimTime = ""; /// /// 申请判定单号 /// [Description("申请判定单号")] [Nullable(false)] [DataLength(40)] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(true)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 附加要求项 /// [Description("附加要求项")] [Nullable(true)] [DataLength(20)] public string AskItme { get { return askItme; } set { askItme = value; } } /// /// 附加要求项名称 /// [Description("附加要求项名称")] [Nullable(true)] [DataLength(200)] public string AskItmeDesc { get { return askItmeDesc; } set { askItmeDesc = value; } } /// /// 附加要求分项 /// [Description("附加要求分项")] [Nullable(false)] [DataLength(20)] public string AskSubItme { get { return askSubItme; } set { askSubItme = value; } } /// /// 附加要求分项描述 /// [Description("附加要求分项描述")] [Nullable(true)] [DataLength(200)] public string AskSubItmeDesc { get { return askSubItmeDesc; } set { askSubItmeDesc = value; } } /// /// 标准说明 /// [Description("标准说明")] [Nullable(false)] [DataLength(20)] public string AskSubItmeVal { get { return askSubItmeVal; } set { askSubItmeVal = value; } } /// /// 标准说明描述 /// [Description("标准说明描述")] [Nullable(true)] [DataLength(4000)] public string AskSubItmeValDesc { get { return askSubItmeValDesc; } set { askSubItmeValDesc = value; } } /// /// 是否确认(0 未确认 1已确认) /// [Description("是否确认(0 未确认 1已确认)")] [Nullable(true)] [DataLength(1)] public string AskIsComfrim { get { return askIsComfrim; } set { askIsComfrim = value; } } /// /// 执行标准说明 /// [Description("执行标准说明")] [Nullable(true)] [DataLength(4000)] public string AskValDesc { get { return askValDesc; } set { askValDesc = value; } } /// /// 确认人 /// [Description("确认人")] [Nullable(true)] [DataLength(40)] public string ComfrimName { get { return comfrimName; } set { comfrimName = value; } } /// /// 确认时间 /// [Description("确认时间")] [Nullable(true)] public string ComfrimTime { get { return comfrimTime; } set { comfrimTime = value; } } } }