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.Lims.Port.数据管理.实体类 { /// /// 数据库表QCM_JHY_ELEMENTS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-08-24 /// public class QcmJhyElementsEntity { /// /// 成分化验号 /// private string assayno = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 类型(A:熔炼成分;B:成品成分) /// private string assaytype = ""; /// /// 标志(0:未判,1:已判定) /// private string flag = ""; /// /// 碳 /// private string c = ""; /// /// 硅 /// private string si = ""; /// /// 锰 /// private string mn = ""; /// /// 磷 /// private string p = ""; /// /// 硫 /// private string s = ""; /// /// 镍 /// private string ni = ""; /// /// 铬 /// private string cr = ""; /// /// 铜 /// private string cu = ""; /// /// 砷As /// private string asn = ""; /// /// 钛 /// private string ti = ""; /// /// 钒 /// private string v = ""; /// /// 钼 /// private string mo = ""; /// /// 硼 /// private string b = ""; /// /// 钨 /// private string w = ""; /// /// 铝 /// private string al = ""; /// /// 锌 /// private string zn = ""; /// /// 铅 /// private string pb = ""; /// /// 锡 /// private string sn = ""; /// /// 钙 /// private string ca = ""; /// /// 镧 /// private string la = ""; /// /// 锑 /// private string sb = ""; /// /// 铈 /// private string ce = ""; /// /// 硒 /// private string se = ""; /// /// 镁 /// private string mg = ""; /// /// 铌 /// private string nb = ""; /// /// 镉 /// private string cd = ""; /// /// 铋 /// private string bi = ""; /// /// 氮 /// private string n = ""; /// /// 氢 /// private string h = ""; /// /// 氧 /// private string o = ""; /// /// 铁 /// private string fe = ""; /// /// 全铝 /// private string alt = ""; /// /// 酸溶铝 /// private string als = ""; /// /// 酸不溶铝 /// private string alins = ""; /// /// BS /// private string bs = ""; /// /// BN /// private string bn = ""; /// /// MgO /// private string mgo = ""; /// /// SiO2 /// private string sio2 = ""; /// /// Al2O3 /// private string al2o3 = ""; /// /// T.FeO /// private string tfeo = ""; /// /// Fe2O3 /// private string fe2o3 = ""; /// /// H2O /// private string h2o = ""; /// /// CaF2 /// private string caf2 = ""; /// /// P2O5 /// private string p2o5 = ""; /// /// TFE /// private string tfe = ""; /// /// CR2O3 /// private string cr2o3 = ""; /// /// TIO2 /// private string tio2 = ""; /// /// MNO /// private string mno = ""; /// /// P2O5 /// private string v2o5 = ""; /// /// FEO /// private string feo = ""; /// /// CaO /// private string cao = ""; private string ta = ""; /// /// 检验编号(从表QCM_JHY_SAMPLE_D中带过来) /// private string sampleId = ""; /// /// 序号(从表QCM_JHY_SAMPLE_D中带过来) /// private decimal? xh = null; /// /// 光谱仪类型(QSN750/OBLF) /// private string machine = ""; /// /// 创建人 /// 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 sampleNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 00初始、20预判 (熔炼判定) /// private string judgeFlag = ""; /// /// 无注释 /// private string zr = ""; /// /// 00初始、20预判 (炼钢预判定) /// private string lgJudgeFlag = ""; /// /// Co /// private string co = ""; /// /// 取样类型(初样/复样) 0 初样 2复样 /// private string sampleType = ""; /// /// 样管管号 /// private string matNo = ""; /// /// 管头编号 /// private string headMatNo = ""; /// /// 管序号(条码) /// private string barCode = ""; /// /// 成分化验号 /// [Description("成分化验号")] [Nullable(false)] [DataLength(30)] public string Assayno { get { return assayno; } set { assayno = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 性能批号 /// [Description("性能批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 类型(A:熔炼成分;B:成品成分) /// [Description("类型(A:熔炼成分;B:成品成分)")] [Nullable(true)] [DataLength(6)] public string Assaytype { get { return assaytype; } set { assaytype = value; } } /// /// 标志(0:未判,1:已判定) /// [Description("标志(0:未判,1:已判定)")] [Nullable(true)] [DataLength(2)] public string Flag { get { return flag; } set { flag = value; } } /// /// 碳 /// [Description("C")] [Nullable(true)] [DataLength(20)] public string C { get { return c; } set { c = value; } } /// /// 硅 /// [Description("Si")] [Nullable(true)] [DataLength(20)] public string Si { get { return si; } set { si = value; } } /// /// 锰 /// [Description("Mn")] [Nullable(true)] [DataLength(20)] public string Mn { get { return mn; } set { mn = value; } } /// /// 磷 /// [Description("P")] [Nullable(true)] [DataLength(20)] public string P { get { return p; } set { p = value; } } /// /// 硫 /// [Description("S")] [Nullable(true)] [DataLength(20)] public string S { get { return s; } set { s = value; } } /// /// 镍 /// [Description("Ni")] [Nullable(true)] [DataLength(20)] public string Ni { get { return ni; } set { ni = value; } } /// /// 铬 /// [Description("Cr")] [Nullable(true)] [DataLength(20)] public string Cr { get { return cr; } set { cr = value; } } /// /// 铜 /// [Description("Cu")] [Nullable(true)] [DataLength(20)] public string Cu { get { return cu; } set { cu = value; } } /// /// 砷As /// [Description("As")] [Nullable(true)] [DataLength(20)] public string Asn { get { return asn; } set { asn = value; } } /// /// 钛 /// [Description("Ti")] [Nullable(true)] [DataLength(20)] public string Ti { get { return ti; } set { ti = value; } } /// /// 钒 /// [Description("V")] [Nullable(true)] [DataLength(20)] public string V { get { return v; } set { v = value; } } /// /// 钼 /// [Description("Mo")] [Nullable(true)] [DataLength(20)] public string Mo { get { return mo; } set { mo = value; } } /// /// 硼 /// [Description("B")] [Nullable(true)] [DataLength(20)] public string B { get { return b; } set { b = value; } } /// /// 钨 /// [Description("W")] [Nullable(true)] [DataLength(20)] public string W { get { return w; } set { w = value; } } /// /// 铝 /// [Description("Al")] [Nullable(true)] [DataLength(20)] public string Al { get { return al; } set { al = value; } } /// /// 锌 /// [Description("Zn")] [Nullable(true)] [DataLength(20)] public string Zn { get { return zn; } set { zn = value; } } /// /// 铅 /// [Description("Pb")] [Nullable(true)] [DataLength(20)] public string Pb { get { return pb; } set { pb = value; } } /// /// 锡 /// [Description("Sn")] [Nullable(true)] [DataLength(20)] public string Sn { get { return sn; } set { sn = value; } } /// /// 钙 /// [Description("Ca")] [Nullable(true)] [DataLength(20)] public string Ca { get { return ca; } set { ca = value; } } /// /// 镧 /// [Description("La")] [Nullable(true)] [DataLength(20)] public string La { get { return la; } set { la = value; } } /// /// 锑 /// [Description("Sb")] [Nullable(true)] [DataLength(20)] public string Sb { get { return sb; } set { sb = value; } } /// /// 铈 /// [Description("Ce")] [Nullable(true)] [DataLength(20)] public string Ce { get { return ce; } set { ce = value; } } /// /// 硒 /// [Description("Se")] [Nullable(true)] [DataLength(20)] public string Se { get { return se; } set { se = value; } } /// /// 镁 /// [Description("Mg")] [Nullable(true)] [DataLength(20)] public string Mg { get { return mg; } set { mg = value; } } /// /// 铌 /// [Description("Nb")] [Nullable(true)] [DataLength(20)] public string Nb { get { return nb; } set { nb = value; } } /// /// 镉 /// [Description("Cd")] [Nullable(true)] [DataLength(20)] public string Cd { get { return cd; } set { cd = value; } } /// /// 铋 /// [Description("Bi")] [Nullable(true)] [DataLength(20)] public string Bi { get { return bi; } set { bi = value; } } /// /// 氮 /// [Description("N")] [Nullable(true)] [DataLength(20)] public string N { get { return n; } set { n = value; } } /// /// 氢 /// [Description("H")] [Nullable(true)] [DataLength(20)] public string H { get { return h; } set { h = value; } } /// /// 氧 /// [Description("O")] [Nullable(true)] [DataLength(20)] public string O { get { return o; } set { o = value; } } /// /// 铁 /// [Description("Fe")] [Nullable(true)] [DataLength(20)] public string Fe { get { return fe; } set { fe = value; } } /// /// 全铝 /// [Description("Alt")] [Nullable(true)] [DataLength(20)] public string Alt { get { return alt; } set { alt = value; } } /// /// 酸溶铝 /// [Description("Als")] [Nullable(true)] [DataLength(20)] public string Als { get { return als; } set { als = value; } } /// /// 酸不溶铝 /// [Description("Alins")] [Nullable(true)] [DataLength(20)] public string Alins { get { return alins; } set { alins = value; } } /// /// BS /// [Description("Bs")] [Nullable(true)] [DataLength(20)] public string Bs { get { return bs; } set { bs = value; } } /// /// BN /// [Description("Bn")] [Nullable(true)] [DataLength(20)] public string Bn { get { return bn; } set { bn = value; } } /// /// MgO /// [Description("MgO")] [Nullable(true)] [DataLength(20)] public string Mgo { get { return mgo; } set { mgo = value; } } /// /// SiO2 /// [Description("SiO2")] [Nullable(true)] [DataLength(20)] public string Sio2 { get { return sio2; } set { sio2 = value; } } /// /// Al2O3 /// [Description("Al2O3")] [Nullable(true)] [DataLength(20)] public string Al2o3 { get { return al2o3; } set { al2o3 = value; } } /// /// T.FeO /// [Description("T.FeO")] [Nullable(true)] [DataLength(20)] public string Tfeo { get { return tfeo; } set { tfeo = value; } } /// /// Fe2O3 /// [Description("Fe2O3")] [Nullable(true)] [DataLength(20)] public string Fe2o3 { get { return fe2o3; } set { fe2o3 = value; } } /// /// H2O /// [Description("H2O")] [Nullable(true)] [DataLength(20)] public string H2o { get { return h2o; } set { h2o = value; } } /// /// CaF2 /// [Description("CaF2")] [Nullable(true)] [DataLength(20)] public string Caf2 { get { return caf2; } set { caf2 = value; } } /// /// P2O5 /// [Description("P2O5")] [Nullable(true)] [DataLength(20)] public string P2o5 { get { return p2o5; } set { p2o5 = value; } } /// /// TFE /// [Description("TFE")] [Nullable(true)] [DataLength(20)] public string Tfe { get { return tfe; } set { tfe = value; } } /// /// CR2O3 /// [Description("CR2O3")] [Nullable(true)] [DataLength(20)] public string Cr2o3 { get { return cr2o3; } set { cr2o3 = value; } } /// /// TIO2 /// [Description("TIO2")] [Nullable(true)] [DataLength(20)] public string Tio2 { get { return tio2; } set { tio2 = value; } } /// /// MNO /// [Description("MNO")] [Nullable(true)] [DataLength(20)] public string Mno { get { return mno; } set { mno = value; } } /// /// P2O5 /// [Description("P2O5")] [Nullable(true)] [DataLength(20)] public string V2o5 { get { return v2o5; } set { v2o5 = value; } } /// /// FEO /// [Description("FEO")] [Nullable(true)] [DataLength(20)] public string Feo { get { return feo; } set { feo = value; } } /// /// CaO /// [Description("CaO")] [Nullable(true)] [DataLength(20)] public string Cao { get { return cao; } set { cao = value; } } /// /// Ta /// [Description("Ta")] [Nullable(true)] [DataLength(20)] public string Ta { get { return ta; } set { ta = value; } } /// /// 检验编号(从表QCM_JHY_SAMPLE_D中带过来) /// [Description("检验编号(从表QCM_JHY_SAMPLE_D中带过来)")] [Nullable(true)] [DataLength(20)] public string SampleId { get { return sampleId; } set { sampleId = value; } } /// /// 序号(从表QCM_JHY_SAMPLE_D中带过来) /// [Description("序号(从表QCM_JHY_SAMPLE_D中带过来)")] [Nullable(true)] [DataLength(22)] public decimal? Xh { get { return xh; } set { xh = value; } } /// /// 光谱仪类型(QSN750/OBLF) /// [Description("光谱仪类型(QSN750/OBLF)")] [Nullable(true)] [DataLength(500)] public string Machine { get { return machine; } set { machine = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(false)] 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(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 试样号 /// [Description("试样号")] [Nullable(true)] [DataLength(20)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(4)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 00初始、20预判 (熔炼判定) /// [Description("00初始、20预判 (熔炼判定)")] [Nullable(true)] [DataLength(2)] public string JudgeFlag { get { return judgeFlag; } set { judgeFlag = value; } } /// /// 无注释 /// [Description("Zr")] [Nullable(true)] [DataLength(20)] public string Zr { get { return zr; } set { zr = value; } } /// /// 00初始、20预判 (炼钢预判定) /// [Description("00初始、20预判 (炼钢预判定)")] [Nullable(true)] [DataLength(2)] public string LgJudgeFlag { get { return lgJudgeFlag; } set { lgJudgeFlag = value; } } /// /// Co /// [Description("Co")] [Nullable(true)] [DataLength(20)] public string Co { get { return co; } set { co = value; } } /// /// 取样类型(初样/复样) 0 初样 2复样 /// [Description("取样类型(初样/复样) 0 初样 2复样")] [Nullable(true)] [DataLength(20)] public string SampleType { get { return sampleType; } set { sampleType = value; } } /// /// 样管管号 /// [Description("样管管号")] [Nullable(true)] [DataLength(20)] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 管头编号 /// [Description("管头编号")] [Nullable(true)] [DataLength(20)] public string HeadMatNo { get { return headMatNo; } set { headMatNo = value; } } /// /// 管序号(条码) /// [Description("管序号(条码)")] [Nullable(true)] [DataLength(20)] public string BarCode { get { return barCode; } set { barCode = value; } } } }