using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Qcm.model { /// /// 数据库表COM_BASE_STD所对应的实体类(生成工具:代码生成工具1.0) /// 作者:tgcx-test 时间:2016-05-18 /// public class ComBaseStdEntity { /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类型(G:国标(国际),X:协议,K:Alpha,N:内控:S:试验标准:P:成分偏差标准) /// private string stdstyle = ""; /// /// 标准描述 /// private string stdNote = ""; /// /// 标准协会代码(4001) /// private string stdStyle2 = ""; /// /// 标准协会描述(美标、英标、国标、行业标准、企标.......) /// private string stdStyleName = ""; /// /// 标准版本号 /// private string stdVersion = ""; /// /// 管理部门代码 /// private string departmentCode = ""; /// /// 管理部门描述 /// private string departmentDesc = ""; /// /// 管理科室代码 /// private string unitCode = ""; /// /// 管理科室描述 /// private string unitDesc = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 适用工序代码 /// private string processCode = ""; /// /// 适用工序名称 /// private string processDesc = ""; /// /// {老系统}标准代码 /// private string stdCodeOld = ""; /// /// 纳标标志 0未纳标 1已纳标 /// private string acceptBid = ""; private bool chk = false; /// /// 选择 /// [Description("选择")] [Nullable(false)] [JsonProperty("chk")] public bool Chk { get { return chk; } set { chk = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(false)] [DataLength(20)] [JsonProperty("stdCode")] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(200)] [JsonProperty("stdName")] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 标准类型(G:国标(国际),X:协议,K:Alpha,N:内控:S:试验标准:P:成分偏差标准) /// [Description("标准类型(G:国标(国际),X:协议,K:Alpha,N:内控:S:试验标准:P:成分偏差标准)")] [Nullable(true)] [DataLength(1)] [JsonProperty("stdstyle")] public string Stdstyle { get { return stdstyle; } set { stdstyle = value; } } /// /// 标准描述 /// [Description("标准描述")] [Nullable(true)] [DataLength(500)] [JsonProperty("stdNote")] public string StdNote { get { return stdNote; } set { stdNote = value; } } /// /// 标准协会代码(4001) /// [Description("标准协会代码(4001)")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdStyle")] public string StdStyle2 { get { return stdStyle2; } set { stdStyle2 = value; } } /// /// 标准协会描述(美标、英标、国标、行业标准、企标.......) /// [Description("标准协会描述(美标、英标、国标、行业标准、企标.......)")] [Nullable(true)] [DataLength(200)] [JsonProperty("stdStyleName")] public string StdStyleName { get { return stdStyleName; } set { stdStyleName = value; } } /// /// 标准版本号 /// [Description("标准版本号")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdVersion")] public string StdVersion { get { return stdVersion; } set { stdVersion = value; } } /// /// 管理部门代码 /// [Description("管理部门代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("departmentCode")] public string DepartmentCode { get { return departmentCode; } set { departmentCode = value; } } /// /// 管理部门描述 /// [Description("管理部门描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("departmentDesc")] public string DepartmentDesc { get { return departmentDesc; } set { departmentDesc = value; } } /// /// 管理科室代码 /// [Description("管理科室代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("unitCode")] public string UnitCode { get { return unitCode; } set { unitCode = value; } } /// /// 管理科室描述 /// [Description("管理科室描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("unitDesc")] public string UnitDesc { get { return unitDesc; } set { unitDesc = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] [JsonProperty("updateName")] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] [JsonProperty("updateTime")] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] [JsonProperty("deleteName")] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] [JsonProperty("deleteTime")] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(true)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 适用工序代码 /// [Description("适用工序代码")] [Nullable(true)] [DataLength(50)] [JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 适用工序名称 /// [Description("适用工序名称")] [Nullable(true)] [DataLength(3000)] [JsonProperty("processDesc")] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// {老系统}标准代码 /// [Description("{老系统}标准代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdCodeOld")] public string StdCodeOld { get { return stdCodeOld; } set { stdCodeOld = value; } } /// /// 纳标标志 0未纳标 1已纳标 /// [Description("纳标标志 0未纳标 1已纳标")] [Nullable(true)] [DataLength(1)] [JsonProperty("acceptBid")] public string AcceptBid { get { return acceptBid; } set { acceptBid = value; } } } }