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.YdmPipeManage.Entity {/// /// 数据库表YDM_ZC_REDCHONG所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2019-03-02 /// public class YdmZcRedchongEntity { private string plineCode = ""; private string plineName = ""; private string redType = ""; private string redFlag = ""; /// /// 红冲单号 /// private string instockDoc = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 批号 /// private string batchNo = ""; /// /// 组号 /// private string batchGroudNo = ""; /// /// 物料码 /// private string materialNo = ""; /// /// 物料描叙 /// private string materialName = ""; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述(PSL1....) /// private string stdStyleDesc = ""; /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 外径(实际) /// private decimal? actDimater = null; /// /// 壁厚(实际) /// private decimal? actHeight = null; /// /// 长度下限(实际) /// private decimal? actLenMin = null; /// /// 长度上限(实际) /// private decimal? actLenMax = null; /// /// 长度(实际) /// private decimal? actLen = null; /// /// 材料支数(实际) /// private decimal? actCount = null; /// /// 材料实重(实际) /// private decimal? actWeight = null; /// /// 材料理论重量(实际) /// private decimal? actTheoryWeight = null; /// /// 所属权单位代码 /// private string belongCode = ""; /// /// 所属权单位 /// private string belongName = ""; /// /// 仓库代码 /// private string storageNo = ""; /// /// 材料类别 /// private string productFlag = ""; /// /// 材料状态 /// private string matStatus = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 是否接收(0,未接收 1已接收) /// private string frimFlag = ""; /// /// 接收人 /// private string frimName = ""; /// /// 接收时间 /// private string frimTime = ""; /// /// 审批说明 /// private string frimMemo = ""; /// /// 红冲说明 /// private string redchongMemo = ""; /// /// 接收产线代码 /// private string frimPlineCode = ""; /// /// 接收产线 /// private string frimPlineName = ""; private string supplyUnitCode = ""; private string supplyUnit = ""; /// /// 制造商代码 /// [Description("制造商代码")] [Nullable(false)] [DataLength(40)] public string SupplyUnitCode { get { return supplyUnitCode; } set { supplyUnitCode = value; } } /// /// 制造商 /// [Description("制造商")] [Nullable(false)] [DataLength(40)] public string SupplyUnit { get { return supplyUnit; } set { supplyUnit = value; } } /// /// 红冲类别 /// [Description("红冲类别")] [Nullable(false)] [DataLength(40)] public string RedFlag { get { return redFlag; } set { redFlag = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [DataLength(40)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线 /// [Description("产线")] [Nullable(false)] [DataLength(40)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 红冲类型 /// [Description("红冲类型")] [Nullable(false)] [DataLength(40)] public string RedType { get { return redType; } set { redType = value; } } /// /// 红冲单号 /// [Description("红冲单号")] [Nullable(false)] [DataLength(40)] public string InstockDoc { get { return instockDoc; } set { instockDoc = 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(3)] public string BatchGroudNo { get { return batchGroudNo; } set { batchGroudNo = value; } } /// /// 物料码 /// [Description("物料码")] [Nullable(true)] [DataLength(40)] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 物料描叙 /// [Description("物料")] [Nullable(true)] [DataLength(100)] public string MaterialName { get { return materialName; } set { materialName = value; } } /// /// 品名代码 /// [Description("品名代码")] [Nullable(true)] [DataLength(20)] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名")] [Nullable(true)] [DataLength(100)] public string Producname { get { return producname; } set { producname = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(true)] [DataLength(20)] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(256)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [Nullable(true)] [DataLength(10)] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 钢级(牌号)代码 /// [Description("钢级(牌号)代码")] [Nullable(true)] [DataLength(10)] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 标准类别代码 /// [Description("标准类别代码")] [Nullable(true)] [DataLength(20)] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 标准类别描述(PSL1....) /// [Description("标准类别")] [Nullable(true)] [DataLength(50)] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 产品规格代码 /// [Description("产品规格代码")] [Nullable(true)] [DataLength(20)] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 产品规格描述 /// [Description("规格")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 外径(实际) /// [Description("外径")] [Nullable(true)] [DataLength(5)] public decimal? ActDimater { get { return actDimater; } set { actDimater = value; } } /// /// 壁厚(实际) /// [Description("壁厚")] [Nullable(true)] [DataLength(5)] public decimal? ActHeight { get { return actHeight; } set { actHeight = value; } } /// /// 长度下限(实际) /// [Description("长度下限")] [Nullable(true)] [DataLength(5)] public decimal? ActLenMin { get { return actLenMin; } set { actLenMin = value; } } /// /// 长度上限(实际) /// [Description("长度上限")] [Nullable(true)] [DataLength(5)] public decimal? ActLenMax { get { return actLenMax; } set { actLenMax = value; } } /// /// 长度(实际) /// [Description("长度")] [Nullable(true)] [DataLength(9)] public decimal? ActLen { get { return actLen; } set { actLen = value; } } /// /// 材料支数(实际) /// [Description("支数")] [Nullable(true)] [DataLength(3)] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 材料实重(实际) /// [Description("重量")] [Nullable(true)] [DataLength(11)] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 材料理论重量(实际) /// [Description("理论重量")] [Nullable(true)] [DataLength(11)] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 所属权单位代码 /// [Description("所属权单位代码")] [Nullable(true)] [DataLength(20)] public string BelongCode { get { return belongCode; } set { belongCode = value; } } /// /// 所属权单位 /// [Description("所属权单位")] [Nullable(true)] [DataLength(100)] public string BelongName { get { return belongName; } set { belongName = value; } } /// /// 仓库代码 /// [Description("仓库代码")] [Nullable(true)] [DataLength(5)] public string StorageNo { get { return storageNo; } set { storageNo = value; } } /// /// 材料类别 /// [Description("材料类别")] [Nullable(true)] [DataLength(10)] public string ProductFlag { get { return productFlag; } set { productFlag = value; } } /// /// 材料状态 /// [Description("材料状态")] [Nullable(true)] [DataLength(10)] public string MatStatus { get { return matStatus; } set { matStatus = value; } } /// /// 结算日期(年月) /// [Description("结转年月")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = 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; } } /// /// 是否接收(0,未接收 1已接收) /// [Description("是否审核")] [Nullable(true)] [DataLength(1)] public string FrimFlag { get { return frimFlag; } set { frimFlag = value; } } /// /// 接收人 /// [Description("接收人")] [Nullable(true)] [DataLength(20)] public string FrimName { get { return frimName; } set { frimName = value; } } /// /// 接收时间 /// [Description("接收时间")] [Nullable(true)] public string FrimTime { get { return frimTime; } set { frimTime = value; } } /// /// 审批说明 /// [Description("审批说明")] [Nullable(true)] [DataLength(400)] public string FrimMemo { get { return frimMemo; } set { frimMemo = value; } } /// /// 红冲说明 /// [Description("红冲说明")] [Nullable(true)] [DataLength(400)] public string RedchongMemo { get { return redchongMemo; } set { redchongMemo = value; } } /// /// 接收产线代码 /// [Description("接收产线代码")] [Nullable(true)] [DataLength(20)] public string FrimPlineCode { get { return frimPlineCode; } set { frimPlineCode = value; } } /// /// 接收产线 /// [Description("接收产线")] [Nullable(true)] [DataLength(20)] public string FrimPlineName { get { return frimPlineName; } set { frimPlineName = value; } } /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 合同子行号 /// private string orderSeqNo = ""; /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(20)] public string OrderNo { get { return orderNo; } set { orderNo = value; } } /// /// 合同行号 /// [Description("合同行号")] [Nullable(true)] [DataLength(3)] public string OrderSeq { get { return orderSeq; } set { orderSeq = value; } } /// /// 合同子行号 /// [Description("合同子行号")] [Nullable(true)] [DataLength(3)] public string OrderSeqNo { get { return orderSeqNo; } set { orderSeqNo = value; } } } }