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.Data.PipeAndOutdec { class PipeCheckconsignBaseinfoEntity { /// /// 试样号 /// private string sampleNo = ""; /// /// 检验编号 产线代码 + 炉号 + 1位流水 /// private string checkNo = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 炉号 对应JUDGE_STOVE_NO 判定炉号 /// private string heatNo = ""; /// /// 钢级 /// private string steelGrade = ""; /// /// 钢号 /// private string steelNo = ""; /// /// 品名 /// private string productName = ""; /// /// 技术标准(生产标准) /// private string productStd = ""; /// /// 工艺文件号 /// private string craftFileNo = ""; /// /// 合同号 /// private string contractNo = ""; /// /// 0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE /// private string checkCount = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线 /// private string plineName = ""; /// /// 外径 /// private string dimater = ""; /// /// 壁厚 /// private string height = ""; /// /// 扣型 /// private string buckleType = ""; /// /// 工艺状态 /// private string processStatus = ""; /// /// 委托单位 对应 CONSIGNER /// private string consignDept = ""; /// /// 委托人(MES为质量下发委托,其他为调度人) /// private string consignName = ""; /// /// 委托时间 /// private string consignTime = ""; /// /// 是否监制(0为不监制,1为监制) /// private string isproducer = ""; /// /// 特殊要求 /// private string specReq = ""; /// /// 取样人 /// private string getName = ""; /// /// 取样时间 /// private string getTime = ""; /// /// 委托单位送样人 /// private string consigndeptSendName = ""; /// /// 委托单位送样时间 /// private string consigndeptSendTime = ""; /// /// 加工接样人 /// private string jgReceiveName = ""; /// /// 加工样品交接时间 /// private string jgReceiveTime = ""; /// /// 是否加急(0否) /// private string isRush = ""; /// /// 加急人 /// private string rushName = ""; /// /// 加急时间 /// private string rushTime = ""; /// /// 0委托单位未取样,1委托单位正在送样...,2加工已确认 /// private string flag = ""; /// /// 样品备注 /// private string sampleRemark = ""; /// /// 备注 /// private string remark = ""; /// /// 0生产厂委托,1人工委托 /// private string dataType = ""; /// /// 数据状态(1有效、无效) /// private string validflag = ""; /// /// 工艺文件路径 /// private string craftPath = ""; /// /// 工序代码 /// private string processCode = ""; /// /// 委托类型 /// private string craftSource = ""; /// /// 制程号 /// private string indexSeq = ""; /// /// pic /// private string pic = ""; private string cic = ""; /// /// cic /// [Description("CIC")] [Nullable(false)] [DataLength(50)] public string Cic { get { return cic; } set { cic = value; } } /// /// pic /// [Description("PIC")] [Nullable(false)] [DataLength(50)] public string Pic { get { return pic; } set { pic = value; } } /// /// 制程号 /// [Description("制程号")] [Nullable(false)] [DataLength(50)] public string IndexSeq { get { return indexSeq; } set { indexSeq = value; } } /// /// 检验编号 产线代码 + 炉号 + 1位流水 /// [Description("工序代码")] [Nullable(false)] [DataLength(50)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 检验编号 产线代码 + 炉号 + 1位流水 /// [Description("委托类型")] [Nullable(false)] [DataLength(50)] public string CraftSource { get { return craftSource; } set { craftSource = value; } } /// /// 检验编号 产线代码 + 炉号 + 1位流水 /// [Description("试样号")] [Nullable(false)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 检验编号 产线代码 + 炉号 + 1位流水 /// [Description("检验编号")] [Nullable(false)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 生产批号 /// [Description("生产批号")] [Nullable(true)] [DataLength(50)] public string LotNo { get { return lotNo; } set { lotNo = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 炉号 对应JUDGE_STOVE_NO 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(50)] public string HeatNo { get { return heatNo; } set { heatNo = value; } } /// /// 钢级 /// [Description("钢级")] [Nullable(true)] [DataLength(50)] public string SteelGrade { get { return steelGrade; } set { steelGrade = value; } } /// /// 钢号 /// [Description("钢种")] [Nullable(true)] [DataLength(50)] public string SteelNo { get { return steelNo; } set { steelNo = value; } } /// /// 品名 /// [Description("品名")] [Nullable(true)] [DataLength(50)] public string ProductName { get { return productName; } set { productName = value; } } /// /// 技术标准(生产标准) /// [Description("技术标准")] [Nullable(true)] [DataLength(400)] public string ProductStd { get { return productStd; } set { productStd = value; } } /// /// 工艺文件号 /// [Description("工艺文件号")] [Nullable(true)] [DataLength(400)] public string CraftFileNo { get { return craftFileNo; } set { craftFileNo = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(50)] public string ContractNo { get { return contractNo; } set { contractNo = value; } } /// /// 0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE /// [Description("0为正常,1为重检样,2为复检(样品类型) 对应SAMPLE_TYPE ")] [Nullable(true)] [DataLength(1)] public string CheckCount { get { return checkCount; } set { checkCount = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(4)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线 /// [Description("产线")] [Nullable(true)] [DataLength(4)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 外径 /// [Description("外径")] [Nullable(true)] [DataLength(20)] public string Dimater { get { return dimater; } set { dimater = value; } } /// /// 壁厚 /// [Description("壁厚")] [Nullable(true)] [DataLength(20)] public string Height { get { return height; } set { height = value; } } /// /// 扣型 /// [Description("扣型")] [Nullable(true)] [DataLength(20)] public string BuckleType { get { return buckleType; } set { buckleType = value; } } /// /// 工艺状态 /// [Description("工艺状态")] [Nullable(true)] [DataLength(20)] public string ProcessStatus { get { return processStatus; } set { processStatus = value; } } /// /// 委托单位 对应 CONSIGNER /// [Description("委托单位")] [Nullable(true)] [DataLength(100)] public string ConsignDept { get { return consignDept; } set { consignDept = value; } } /// /// 委托人(MES为质量下发委托,其他为调度人) /// [Description("委托人")] [Nullable(true)] [DataLength(20)] public string ConsignName { get { return consignName; } set { consignName = value; } } /// /// 委托时间 /// [Description("委托时间")] [Nullable(true)] public string ConsignTime { get { return consignTime; } set { consignTime = value; } } /// /// 是否监制(0为不监制,1为监制) /// [Description("是否监制")] [Nullable(true)] [DataLength(1)] public string Isproducer { get { return isproducer; } set { isproducer = value; } } /// /// 特殊要求 /// [Description("特殊要求")] [Nullable(true)] [DataLength(400)] public string SpecReq { get { return specReq; } set { specReq = value; } } /// /// 取样人 /// [Description("取样人")] [Nullable(true)] [DataLength(20)] public string GetName { get { return getName; } set { getName = value; } } /// /// 取样时间 /// [Description("取样时间")] [Nullable(true)] public string GetTime { get { return getTime; } set { getTime = value; } } /// /// 委托单位送样人 /// [Description("委托单位送样人")] [Nullable(true)] [DataLength(20)] public string ConsigndeptSendName { get { return consigndeptSendName; } set { consigndeptSendName = value; } } /// /// 委托单位送样时间 /// [Description("委托单位送样时间")] [Nullable(true)] public string ConsigndeptSendTime { get { return consigndeptSendTime; } set { consigndeptSendTime = value; } } /// /// 加工接样人 /// [Description("加工接样人")] [Nullable(true)] [DataLength(20)] public string JgReceiveName { get { return jgReceiveName; } set { jgReceiveName = value; } } /// /// 加工样品交接时间 /// [Description("加工样品交接时间")] [Nullable(true)] public string JgReceiveTime { get { return jgReceiveTime; } set { jgReceiveTime = value; } } /// /// 是否加急(0否) /// [Description("是否加急")] [Nullable(true)] [DataLength(1)] public string IsRush { get { return isRush; } set { isRush = value; } } /// /// 加急人 /// [Description("加急人")] [Nullable(true)] [DataLength(20)] public string RushName { get { return rushName; } set { rushName = value; } } /// /// 加急时间 /// [Description("加急时间")] [Nullable(true)] public string RushTime { get { return rushTime; } set { rushTime = value; } } /// /// 0委托单位未取样,1委托单位正在送样...,2加工已确认 /// [Description("状态")] [Nullable(true)] [DataLength(1)] public string Flag { get { return flag; } set { flag = value; } } /// /// 样品备注 /// [Description("样品备注")] [Nullable(true)] [DataLength(4000)] public string SampleRemark { get { return sampleRemark; } set { sampleRemark = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] public string Remark { get { return remark; } set { remark = value; } } /// /// 0生产厂委托,1人工委托 /// [Description("0生产厂委托,1人工委托")] [Nullable(true)] [DataLength(1)] public string DataType { get { return dataType; } set { dataType = value; } } /// /// 数据状态(1有效、无效) /// [Description("数据状态(1有效、无效)")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 工艺文件路径 /// [Description("工艺文件路径")] [Nullable(true)] [DataLength(400)] public string CraftPath { get { return craftPath; } set { craftPath = value; } } /// /// 制造商代码 /// private string supplyUnitCode = ""; /// /// 制造商 /// private string supplyUnit = ""; [Description("制造商代码")] [Nullable(true)] [DataLength(400)] public string SupplyUnitCode { get { return supplyUnitCode; } set { supplyUnitCode = value; } } [Description("制造商")] [Nullable(true)] [DataLength(400)] public string SupplyUnit { get { return supplyUnit; } set { supplyUnit = value; } } } }