using Core.Mes.Client.Comm.Attribute; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_ZG_CHEMJUDGE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2016-03-24 /// public class QcmZgChemjudgeEntity { /// /// 成分判定记录ID /// private string chemJudgeId = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 捆号(管号、坯料号) /// private string objectno = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 判定生产订单号 /// private string judgeProorder = ""; /// /// 成分判定结果(4074) /// private string judgeresultChem = ""; /// /// 成分化验号 /// private string assayno = ""; /// /// 是否脱单(1:是,0:否) /// private string orderisunchain = ""; /// /// 有效标志(1:有效;0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 判定人 /// private string createName = ""; /// /// 判定时间 /// private string createTime = ""; /// /// 判定申请单号 /// private string jugdeApplyCode = ""; /// /// 成分判定记录ID /// [Description("成分判定记录ID")] [Nullable(false)] [DataLength(20)] public string ChemJudgeId { get { return chemJudgeId; } set { chemJudgeId = value; } } /// /// 生产批号 /// [Description("生产批号")] [Nullable(true)] [DataLength(20)] public string LotNo { get { return lotNo; } set { lotNo = 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; } } /// /// 捆号(管号、坯料号) /// [Description("材料号")] [Nullable(true)] [DataLength(20)] public string Objectno { get { return objectno; } set { objectno = value; } } /// /// 产线代码 /// [Description("产线")] [Nullable(true)] [DataLength(4)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码")] [Nullable(true)] [DataLength(1)] public string ProcessCdoe { get { return processCdoe; } set { processCdoe = value; } } /// /// 工序名称 /// [Description("工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 判定生产订单号 /// [Description("判定生产订单号")] [Nullable(true)] [DataLength(40)] public string JudgeProorder { get { return judgeProorder; } set { judgeProorder = value; } } /// /// 成分判定结果(4074) /// [Description("成分判定结果")] [Nullable(false)] [DataLength(20)] public string JudgeresultChem { get { return judgeresultChem; } set { judgeresultChem = value; } } /// /// 成分化验号 /// [Description("成分化验号")] [Nullable(false)] [DataLength(300)] public string Assayno { get { return assayno; } set { assayno = value; } } /// /// 是否脱单(1:是,0:否) /// [Description("是否脱单")] [Nullable(false)] [DataLength(1)] public string Orderisunchain { get { return orderisunchain; } set { orderisunchain = value; } } /// /// 有效标志(1:有效;0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = 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 JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } } }