using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity { /// /// 数据库表COM_MSC_STD_CHEM所对应的实体类(生成工具:代码生成工具3.0) /// 作者:zhou 时间:2018-01-12 /// public class ComMscStdChemEntity { /// /// 成分标准索引号 /// private string cic = ""; /// /// 序号 /// private decimal? indexSeq = null; /// /// 化学元素代码 /// private string chemCode = ""; /// /// 化学元素描述 /// private string chemName = ""; /// /// 化学元素类型(A:单一元素,B:复合元素) /// private string chemType = ""; /// /// 复合元素计算公式 /// private string chemFormula = ""; /// /// 是否检验()1:是,0:否) /// private string ischeck = ""; /// /// 是否判定()1:是,0:否) /// private string isjudge = ""; /// /// 是否报出()1:是,0:否) /// private string isquote = ""; /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// private string complexType = ""; /// /// 标准范围下限符号 /// private string stdminSign = ""; /// /// 标准范围下限 /// private string stdmin = ""; /// /// 标准范围上限符号 /// private string stdmaxSign = ""; /// /// 标准范围上限 /// private string stdmax = ""; /// /// 标准目标值 /// private string stdtarget = ""; /// /// 扣型代码(集合) /// private string modelCode = ""; /// /// 扣型描述(集合) /// private string modelDesc = ""; /// /// 标准备注 /// private string stdmemo = ""; /// /// 限制元素代码 /// private string eleCode = ""; /// /// 限制元素描述 /// private string eleName = ""; /// /// 限制元素下限符号 /// private string eleMinSign = ""; /// /// 限制元素下限 /// private string eleMin = ""; /// /// 限制元素上限符号 /// private string eleMaxSign = ""; /// /// 限制元素上限 /// private string eleMax = ""; /// /// 限制规格代码(外径、壁厚、径壁比等) /// private string sizeCode2 = ""; /// /// 限制规格描述 /// private string sizeName2 = ""; /// /// 限制规格下限符号 /// private string sizeMinSign2 = ""; /// /// 限制规格下限 /// private string sizeMin2 = ""; /// /// 限制规格上限符号 /// private string sizeMaxSign2 = ""; /// /// 限制规格上限 /// private string sizeMax2 = ""; /// /// 限制规格代码(外径、壁厚、径壁比等) /// private string sizeCode = ""; /// /// 限制规格描述 /// private string sizeName = ""; /// /// 限制规格下限符号 /// private string sizeMinSign = ""; /// /// 限制规格下限 /// private string sizeMin = ""; /// /// 限制规格上限符号 /// private string sizeMaxSign = ""; /// /// 限制规格上限 /// private string sizeMax = ""; /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 创建人 /// 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 repCode = ""; /// /// 替代元素描述 /// private string repName = ""; /// /// 替代元素下限符号 /// private string repMinSign = ""; /// /// 替代元素下限 /// private string repMin = ""; /// /// 替代元素上限符号 /// private string repMaxSign = ""; /// /// 替代元素上限 /// private string repMax = ""; /// /// 替代元素值 /// private string repVal = ""; /// /// 分组索引号(同一分组的为多选一项) /// private string groupSeq = ""; /// /// 成分标准索引号 /// [Description("成分标准索引号")] [Nullable(false)] [DataLength(20)] public string Cic { get { return cic; } set { cic = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(22)] public decimal? IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 化学元素代码 /// [Description("化学元素代码")] [Nullable(false)] [DataLength(5)] public string ChemCode { get { return chemCode; } set { chemCode = value; } } /// /// 化学元素描述 /// [Description("化学元素描述")] [Nullable(true)] [DataLength(50)] public string ChemName { get { return chemName; } set { chemName = value; } } /// /// 化学元素类型(A:单一元素,B:复合元素) /// [Description("化学元素类型(A:单一元素,B:复合元素)")] [Nullable(true)] [DataLength(1)] public string ChemType { get { return chemType; } set { chemType = value; } } /// /// 复合元素计算公式 /// [Description("复合元素计算公式")] [Nullable(true)] [DataLength(100)] public string ChemFormula { get { return chemFormula; } set { chemFormula = value; } } /// /// 是否检验()1:是,0:否) /// [Description("是否检验()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 是否判定()1:是,0:否) /// [Description("是否判定()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Isjudge { get { return isjudge; } set { isjudge = value; } } /// /// 是否报出()1:是,0:否) /// [Description("是否报出()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Isquote { get { return isquote; } set { isquote = value; } } /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// [Description("是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算)")] [Nullable(false)] [DataLength(1)] public string ComplexType { get { return complexType; } set { complexType = value; } } /// /// 标准范围下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// [Description("下限")] [Nullable(true)] [DataLength(100)] public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限 /// [Description("上限")] [Nullable(true)] [DataLength(100)] public string Stdmax { get { return stdmax; } set { stdmax = value; } } /// /// 标准目标值 /// [Description("标准目标值")] [Nullable(true)] [DataLength(10)] public string Stdtarget { get { return stdtarget; } set { stdtarget = value; } } /// /// 扣型代码(集合) /// [Description("扣型代码(集合)")] [Nullable(true)] [DataLength(200)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述(集合) /// [Description("扣型描述(集合)")] [Nullable(true)] [DataLength(1000)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 标准备注 /// [Description("标准备注")] [Nullable(true)] [DataLength(200)] public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } /// /// 限制元素代码 /// [Description("限制元素代码")] [Nullable(true)] [DataLength(20)] public string EleCode { get { return eleCode; } set { eleCode = value; } } /// /// 限制元素描述 /// [Description("元素")] [Nullable(true)] [DataLength(50)] public string EleName { get { return eleName; } set { eleName = value; } } /// /// 限制元素下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string EleMinSign { get { return eleMinSign; } set { eleMinSign = value; } } /// /// 限制元素下限 /// [Description("下限")] [Nullable(true)] [DataLength(10)] public string EleMin { get { return eleMin; } set { eleMin = value; } } /// /// 限制元素上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string EleMaxSign { get { return eleMaxSign; } set { eleMaxSign = value; } } /// /// 限制元素上限 /// [Description("上限")] [Nullable(true)] [DataLength(10)] public string EleMax { get { return eleMax; } set { eleMax = value; } } /// /// 限制规格代码(外径、壁厚、径壁比等) /// [Description("限制规格代码(外径、壁厚、径壁比等)")] [Nullable(true)] [DataLength(20)] public string SizeCode2 { get { return sizeCode2; } set { sizeCode2 = value; } } /// /// 限制规格描述 /// [Description("限制规格描述")] [Nullable(true)] [DataLength(50)] public string SizeName2 { get { return sizeName2; } set { sizeName2 = value; } } /// /// 限制规格下限符号 /// [Description("限制规格下限符号")] [Nullable(true)] [DataLength(2)] public string SizeMinSign2 { get { return sizeMinSign2; } set { sizeMinSign2 = value; } } /// /// 限制规格下限 /// [Description("限制规格下限")] [Nullable(true)] [DataLength(10)] public string SizeMin2 { get { return sizeMin2; } set { sizeMin2 = value; } } /// /// 限制规格上限符号 /// [Description("限制规格上限符号")] [Nullable(true)] [DataLength(2)] public string SizeMaxSign2 { get { return sizeMaxSign2; } set { sizeMaxSign2 = value; } } /// /// 限制规格上限 /// [Description("限制规格上限")] [Nullable(true)] [DataLength(10)] public string SizeMax2 { get { return sizeMax2; } set { sizeMax2 = value; } } /// /// 限制规格代码(外径、壁厚、径壁比等) /// [Description("限制规格代码(外径、壁厚、径壁比等)")] [Nullable(true)] [DataLength(20)] public string SizeCode { get { return sizeCode; } set { sizeCode = value; } } /// /// 限制规格描述 /// [Description("限制规格描述")] [Nullable(true)] [DataLength(50)] public string SizeName { get { return sizeName; } set { sizeName = value; } } /// /// 限制规格下限符号 /// [Description("限制规格下限符号")] [Nullable(true)] [DataLength(2)] public string SizeMinSign { get { return sizeMinSign; } set { sizeMinSign = value; } } /// /// 限制规格下限 /// [Description("限制规格下限")] [Nullable(true)] [DataLength(10)] public string SizeMin { get { return sizeMin; } set { sizeMin = value; } } /// /// 限制规格上限符号 /// [Description("限制规格上限符号")] [Nullable(true)] [DataLength(2)] public string SizeMaxSign { get { return sizeMaxSign; } set { sizeMaxSign = value; } } /// /// 限制规格上限 /// [Description("限制规格上限")] [Nullable(true)] [DataLength(10)] public string SizeMax { get { return sizeMax; } set { sizeMax = value; } } /// /// 接箍规格代码(接箍专用,与外径壁厚只允许存在其一) /// [Description("接箍规格代码(接箍专用,与外径壁厚只允许存在其一)")] [Nullable(true)] [DataLength(20)] public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 接箍规格描述 /// [Description("接箍规格描述")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = 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; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 替代元素代码 /// [Description("代码")] [Nullable(true)] [DataLength(20)] public string RepCode { get { return repCode; } set { repCode = value; } } /// /// 替代元素描述 /// [Description("元素")] [Nullable(true)] [DataLength(50)] public string RepName { get { return repName; } set { repName = value; } } /// /// 替代元素下限符号 /// [Description("下限符号")] [Nullable(true)] [DataLength(2)] public string RepMinSign { get { return repMinSign; } set { repMinSign = value; } } /// /// 替代元素下限 /// [Description("下限")] [Nullable(true)] [DataLength(10)] public string RepMin { get { return repMin; } set { repMin = value; } } /// /// 替代元素上限符号 /// [Description("上限符号")] [Nullable(true)] [DataLength(2)] public string RepMaxSign { get { return repMaxSign; } set { repMaxSign = value; } } /// /// 替代元素上限 /// [Description("上限")] [Nullable(true)] [DataLength(10)] public string RepMax { get { return repMax; } set { repMax = value; } } /// /// 替代元素值 /// [Description("元素值")] [Nullable(true)] [DataLength(10)] public string RepVal { get { return repVal; } set { repVal = value; } } /// /// 分组索引号(同一分组的为多选一项) /// [Description("分组索引号(同一分组的为多选一项)")] [Nullable(true)] [DataLength(6)] public string GroupSeq { get { return groupSeq; } set { groupSeq = value; } } /// /// 是否必检项()1:是,0:否) /// [Description("是否检项")] [Nullable(true)] [DataLength(1)] public bool BIscheck { get { return ischeck == "1"; } set { ischeck = value ? "1" : "0"; } } /// /// 是否判定(1:是,0:否) /// [Description("是否判定")] [Nullable(true)] [DataLength(1)] public bool BIsjudge { get { return isjudge == "1"; } set { isjudge = value ? "1" : "0"; } } /// /// 是否报出(1:是,0:否) /// [Description("是否报出")] [Nullable(true)] [DataLength(1)] public bool BIsquote { get { return isquote == "1"; } set { isquote = value ? "1" : "0"; } } } }