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.YdmStuffManage.Entity { class YdmGpInitialEntity { /// /// ID_ /// private string initialId = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 组号(判定炉号对应长度分组) /// private string groudNo = ""; /// /// 材料类别(8014在制品、成品、商品) /// private string productFlag = ""; /// /// 材料状态(801501在制品阶段、801502成品、801503商品...) /// private string matStatus = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 材料来源类型代码(1外购、2机组产出等) /// private string matOriginCode = ""; /// /// 材料来源类型名称 /// private string matOriginName = ""; /// /// 外购材料号 /// private string originMatNo = ""; /// /// 材料来源地代码(产线、外委、外购对应的具体项目) /// private string soureCode = ""; /// /// 材料来源地名称 /// private string soureName = ""; /// /// 物料码 /// private string materialNo = ""; /// /// 物料描叙 /// private string materialName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 直径或宽度(实际) /// private string dimater = ""; /// /// 厚(实际) /// private decimal? height = null; /// /// 坯料长度(实际) /// private decimal? actLen = null; /// /// 倍尺数(实际) /// private decimal? fixNum = null; /// /// 单倍长度(实际) /// private decimal? fixLen = null; /// /// 材料支数(实际) /// private decimal? actCount = null; /// /// 材料实重(实际) /// private decimal? actWeight = null; /// /// 材料理论重量(实际) /// private decimal? actTheoryWeight = null; /// /// 生产产线代码 /// private string plineCode = ""; /// /// 生产产线名称 /// private string plineName = ""; /// /// 仓库代码 /// private string storageNo = ""; /// /// 仓库代码描述 /// private string storageName = ""; /// /// 料位代码 /// private string locationNo = ""; /// /// 生产合同号(1) /// private string proOrderNo = ""; /// /// 合同主键 /// private string ordPk = ""; /// /// 合同行主键 /// private string ordLnPk = ""; /// /// 交货行主键 /// private string ordLnDlyPk = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货行号 /// private string orderSeqNo = ""; /// /// 所属权单位代码 /// private string belongCode = ""; /// /// 所属权单位 /// private string belongName = ""; /// /// 作业部门代码 /// private string departmentCode = ""; /// /// 作业部门描述 /// private string departmentDesc = ""; /// /// 作业科室代码 /// private string managementNo = ""; /// /// 作业科室名称 /// private string managementName = ""; /// /// 期初日期(YYYYMMDD) /// private string originalDate = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 结转处理标志(0未处理、1已处理) /// private string handleLog = ""; /// /// 入库时间 /// private string instockTime = ""; /// /// 备注 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 铸造订单编号 /// private string proPlanId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 层号 /// private decimal? laryNo = null; /// /// 位置 /// private decimal? locNo = null; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 管坯类型(1铸坯2锻坯) /// private string gptype = ""; /// /// 申请判定单号 /// private string jugdeApplyCode = ""; /// /// 一级工艺文件 /// private string craftno = ""; /// /// 计划作业路线(全程途径码) /// private string planRoute = ""; /// /// 质量状态 /// private string qcmStaus = ""; /// /// 质量状态 /// [Description("质量状态")] [Nullable(true)] [DataLength(6)] public string QcmStaus { get { return qcmStaus; } set { qcmStaus = value; } } /// /// ID_ /// [Description("ID")] [Nullable(false)] [DataLength(40)] public string InitialId { get { return initialId; } set { initialId = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 组号(判定炉号对应长度分组) /// [Description("组号")] [Nullable(true)] [DataLength(3)] public string GroudNo { get { return groudNo; } set { groudNo = value; } } /// /// 材料类别(8014在制品、成品、商品) /// [Description("材料类别")] [Nullable(true)] [DataLength(10)] public string ProductFlag { get { return productFlag; } set { productFlag = value; } } /// /// 材料状态(801501在制品阶段、801502成品、801503商品...) /// [Description("材料状态")] [Nullable(true)] [DataLength(20)] public string MatStatus { get { return matStatus; } set { matStatus = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 材料来源类型代码(1外购、2机组产出等) /// [Description("材料来源类型代码")] [Nullable(true)] [DataLength(10)] public string MatOriginCode { get { return matOriginCode; } set { matOriginCode = value; } } /// /// 材料来源类型名称 /// [Description("材料来源")] [Nullable(true)] [DataLength(20)] public string MatOriginName { get { return matOriginName; } set { matOriginName = value; } } /// /// 外购材料号 /// [Description("外购材料号")] [Nullable(true)] [DataLength(20)] public string OriginMatNo { get { return originMatNo; } set { originMatNo = value; } } /// /// 材料来源地代码(产线、外委、外购对应的具体项目) /// [Description("材料来源地代码")] [Nullable(true)] [DataLength(20)] public string SoureCode { get { return soureCode; } set { soureCode = value; } } /// /// 材料来源地名称 /// [Description("材料来源地")] [Nullable(true)] [DataLength(40)] public string SoureName { get { return soureName; } set { soureName = 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(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(20)] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(200)] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 直径或宽度(实际) /// [Description("直径")] [Nullable(true)] [DataLength(5)] public string Dimater { get { return dimater; } set { dimater = value; } } /// /// 厚(实际) /// [Description("厚(实际)")] [Nullable(true)] [DataLength(4)] public decimal? Height { get { return height; } set { height = value; } } /// /// 坯料长度(实际) /// [Description("坯料长度")] [Nullable(true)] [DataLength(6)] public decimal? ActLen { get { return actLen; } set { actLen = value; } } /// /// 倍尺数(实际) /// [Description("倍尺数")] [Nullable(true)] [DataLength(1)] public decimal? FixNum { get { return fixNum; } set { fixNum = value; } } /// /// 单倍长度(实际) /// [Description("单倍长度")] [Nullable(true)] [DataLength(5)] public decimal? FixLen { get { return fixLen; } set { fixLen = value; } } /// /// 材料支数(实际) /// [Description("支数")] [Nullable(true)] [DataLength(3)] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 材料实重(实际) /// [Description("重量")] [Nullable(true)] [DataLength(9)] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 材料理论重量(实际) /// [Description("材料理论重量(实际)")] [Nullable(true)] [DataLength(9)] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 生产产线代码 /// [Description("生产产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 生产产线名称 /// [Description("产线")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 仓库代码 /// [Description("仓库代码")] [Nullable(true)] [DataLength(5)] public string StorageNo { get { return storageNo; } set { storageNo = value; } } /// /// 仓库代码描述 /// [Description("仓库")] [Nullable(true)] [DataLength(40)] public string StorageName { get { return storageName; } set { storageName = value; } } /// /// 料位代码 /// [Description("料位代码")] [Nullable(true)] [DataLength(9)] public string LocationNo { get { return locationNo; } set { locationNo = value; } } /// /// 生产合同号(1) /// [Description("生产合同号")] [Nullable(true)] [DataLength(20)] public string ProOrderNo { get { return proOrderNo; } set { proOrderNo = value; } } /// /// 合同主键 /// [Description("合同主键")] [Nullable(true)] [DataLength(40)] public string OrdPk { get { return ordPk; } set { ordPk = value; } } /// /// 合同行主键 /// [Description("合同行主键")] [Nullable(true)] [DataLength(40)] public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } /// /// 交货行主键 /// [Description("交货行主键")] [Nullable(true)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 合同号 /// [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; } } /// /// 所属权单位代码 /// [Description("所属权单位代码")] [Nullable(true)] [DataLength(40)] public string BelongCode { get { return belongCode; } set { belongCode = value; } } /// /// 所属权单位 /// [Description("所属权单位")] [Nullable(true)] [DataLength(50)] public string BelongName { get { return belongName; } set { belongName = value; } } /// /// 作业部门代码 /// [Description("作业部门代码")] [Nullable(true)] [DataLength(20)] public string DepartmentCode { get { return departmentCode; } set { departmentCode = value; } } /// /// 作业部门描述 /// [Description("作业部门描述")] [Nullable(true)] [DataLength(100)] public string DepartmentDesc { get { return departmentDesc; } set { departmentDesc = value; } } /// /// 作业科室代码 /// [Description("作业科室代码")] [Nullable(true)] [DataLength(20)] public string ManagementNo { get { return managementNo; } set { managementNo = value; } } /// /// 作业科室名称 /// [Description("作业科室名称")] [Nullable(true)] [DataLength(40)] public string ManagementName { get { return managementName; } set { managementName = value; } } /// /// 期初日期(YYYYMMDD) /// [Description("期初日期")] [Nullable(true)] [DataLength(8)] public string OriginalDate { get { return originalDate; } set { originalDate = value; } } /// /// 结算日期(年月) /// [Description("结转年月")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } /// /// 结转处理标志(0未处理、1已处理) /// [Description("结转处理标志")] [Nullable(true)] [DataLength(1)] public string HandleLog { get { return handleLog; } set { handleLog = value; } } /// /// 入库时间 /// [Description("入库时间")] [Nullable(true)] public string InstockTime { get { return instockTime; } set { instockTime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] 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 ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 工序排产序号 /// [Description("工序排产序号")] [Nullable(true)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 层号 /// [Description("层号")] [Nullable(true)] [DataLength(2)] public decimal? LaryNo { get { return laryNo; } set { laryNo = value; } } /// /// 位置 /// [Description("位置")] [Nullable(true)] [DataLength(2)] public decimal? LocNo { get { return locNo; } set { locNo = 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; } } /// /// 管坯类型(1铸坯2锻坯) /// [Description("管坯类型")] [Nullable(true)] [DataLength(20)] public string Gptype { get { return gptype; } set { gptype = value; } } /// /// 申请判定单号 /// [Description("申请判定单号")] [Nullable(true)] [DataLength(40)] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// 一级工艺文件 /// [Description("一级工艺文件")] [Nullable(true)] [DataLength(40)] public string Craftno { get { return craftno; } set { craftno = value; } } /// /// 计划作业路线(全程途径码) /// [Description("计划作业路线")] [Nullable(true)] [DataLength(100)] public string PlanRoute { get { return planRoute; } set { planRoute = value; } } } }