using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { /// /// 数据库表COUPLING_MAT_BUTTRESS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20180117CCCC 时间:2018-09-19 /// public class CouplingMatButtressEntity { /// /// 材料号(作业工单号+实绩编号+3位流水) /// private string matNo = ""; /// /// 实绩编号 /// private string resultNo = ""; /// /// 工单号(炉次计划号+01流水) /// private string woId = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 批号(炉批号) /// private string batchNo = ""; /// /// 接箍料物料编码 /// private string blWlId = ""; /// /// 接箍料外径(mm) /// private decimal? minD = null; /// /// 接箍料壁厚(mm) /// private decimal? minH = null; /// /// 接箍码 /// private string codeJg = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 接箍外径 /// private decimal? outdiameter = null; /// /// 接箍壁厚 /// private decimal? wallthick = null; /// /// 接箍规格代码 /// private string specJg = ""; /// /// 接箍规格描述 /// private string specJgDesc = ""; /// /// 中孔类别(I、II、III、IV...) /// private string styleJg = ""; /// /// 中孔内径 /// private decimal? diameter = null; /// /// 测量J值 /// private decimal? checkJVal = null; /// /// 接箍长度 /// private decimal? aimlength = null; /// /// 单重 /// private decimal? singleweight = null; /// /// 监制要求 /// private string monitordemand = ""; /// /// 是否接箍监制 /// private string ifMonitorJg = ""; /// /// 监制编号 /// private string prdcrNo = ""; /// /// 监制人 /// private string producer = ""; /// /// 个数(原始记录) /// private decimal? proNum = null; /// /// 总重量(原始记录) /// private decimal? proWt = null; /// /// 操作工 /// private string colOperator = ""; /// /// 作业时间 /// private string rroTime = ""; /// /// 作业班次 /// private string proShift = ""; /// /// 作业班组 /// private string proGroup = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 首次入库时间 /// private string fInTime = ""; /// /// 接箍料物料 /// private string blWlDesc = ""; /// /// 探伤要求(4项之一,408401) /// private string demandDetection = ""; /// /// 喷砂要求(4项之一) /// private string demandBlast = ""; /// /// 磷化镀铜要求(4项之一,408402) /// private string demandBonderizing = ""; /// /// 压印喷标要求(4项之一) /// private string demandCopper = ""; /// /// 涂层类型(0.无、1镀铜、2磷化、3镀铜及磷化) /// private string coatType = ""; /// /// 所属权单位代码 /// private string belongCode = ""; /// /// 所属权单位 /// private string belongName = ""; /// /// 备料码 /// private string codeJgBl = ""; /// /// 原料工艺文件号 /// private string craftFileNo = ""; /// /// 原料工艺序号 /// private decimal? craftSeq = null; /// /// 接箍合同号 /// private string jgOrderno = ""; /// /// 质量封锁标志(0未封锁、1质量封锁) /// private string lockFlag = ""; /// /// 管理封锁标志(0未封锁、1管理封锁) /// private string mngLockFlag = ""; /// /// 管理封锁备注 /// private string mngLockRemark = ""; /// /// 质量封锁备注 /// private string lockRemark = ""; ///库位名称 private string storageName = ""; [Description("库位")] [Nullable(false)] [DataLength(40)] public string StorageName { get { return storageName; } set { storageName = value; } } /// /// 材料号(作业工单号+实绩编号+3位流水) /// [Description("材料号")] [Nullable(false)] [DataLength(40)] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 实绩编号 /// [Description("实绩编号")] [Nullable(true)] [DataLength(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 工单号(炉次计划号+01流水) /// [Description("工单号")] [Nullable(true)] [DataLength(20)] public string WoId { get { return woId; } set { woId = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(40)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号(炉批号) /// [Description("批号")] [Nullable(true)] [DataLength(10)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 接箍料物料编码 /// [Description("接箍料物料编码")] [Nullable(true)] [DataLength(40)] public string BlWlId { get { return blWlId; } set { blWlId = value; } } /// /// 接箍料外径(mm) /// [Description("接箍料外径(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinD { get { return minD; } set { minD = value; } } /// /// 接箍料壁厚(mm) /// [Description("接箍料壁厚(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinH { get { return minH; } set { minH = value; } } /// /// 接箍码 /// [Description("接箍码")] [Nullable(true)] [DataLength(7)] public string CodeJg { get { return codeJg; } set { codeJg = 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 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(10)] public decimal? Outdiameter { get { return outdiameter; } set { outdiameter = value; } } /// /// 接箍壁厚 /// [Description("接箍壁厚")] [Nullable(true)] [DataLength(10)] public decimal? Wallthick { get { return wallthick; } set { wallthick = value; } } /// /// 接箍规格代码 /// [Description("接箍规格代码")] [Nullable(true)] [DataLength(20)] public string SpecJg { get { return specJg; } set { specJg = value; } } /// /// 接箍规格描述 /// [Description("接箍规格描述")] [Nullable(true)] [DataLength(100)] public string SpecJgDesc { get { return specJgDesc; } set { specJgDesc = value; } } /// /// 中孔类别(I、II、III、IV...) /// [Description("中孔类别")] [Nullable(true)] [DataLength(8)] public string StyleJg { get { return styleJg; } set { styleJg = value; } } /// /// 中孔内径 /// [Description("中孔内径")] [Nullable(true)] [DataLength(6)] public decimal? Diameter { get { return diameter; } set { diameter = value; } } /// /// 测量J值 /// [Description("测量J值")] [Nullable(true)] [DataLength(6)] public decimal? CheckJVal { get { return checkJVal; } set { checkJVal = value; } } /// /// 接箍长度 /// [Description("接箍长度")] [Nullable(true)] [DataLength(10)] public decimal? Aimlength { get { return aimlength; } set { aimlength = value; } } /// /// 单重 /// [Description("单重(Kg)")] [Nullable(true)] [DataLength(10)] public decimal? Singleweight { get { return singleweight; } set { singleweight = value; } } /// /// 监制要求 /// [Description("监制要求")] [Nullable(true)] [DataLength(200)] public string Monitordemand { get { return monitordemand; } set { monitordemand = value; } } /// /// 是否接箍监制 /// [Description("是否接箍监制")] [Nullable(true)] [DataLength(1)] public string IfMonitorJg { get { return ifMonitorJg; } set { ifMonitorJg = value; } } /// /// 监制编号 /// [Description("监制编号")] [Nullable(true)] [DataLength(40)] public string PrdcrNo { get { return prdcrNo; } set { prdcrNo = value; } } /// /// 监制人 /// [Description("监制人")] [Nullable(true)] [DataLength(40)] public string Producer { get { return producer; } set { producer = value; } } /// /// 个数(原始记录) /// [Description("个数")] [Nullable(true)] [DataLength(6)] public decimal? ProNum { get { return proNum; } set { proNum = value; } } /// /// 总重量(原始记录) /// [Description("总重量")] [Nullable(true)] [DataLength(8)] public decimal? ProWt { get { return proWt; } set { proWt = value; } } /// /// 操作工 /// [Description("操作工")] [Nullable(true)] [DataLength(20)] public string ColOperator { get { return colOperator; } set { colOperator = value; } } /// /// 作业时间 /// [Description("作业时间")] [Nullable(true)] public string RroTime { get { return rroTime; } set { rroTime = value; } } /// /// 作业班次 /// [Description("作业班次")] [Nullable(true)] [DataLength(1)] public string ProShift { get { return proShift; } set { proShift = value; } } /// /// 作业班组 /// [Description("作业班组")] [Nullable(true)] [DataLength(1)] public string ProGroup { get { return proGroup; } set { proGroup = 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)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 首次入库时间 /// [Description("首次入库时间")] [Nullable(true)] public string FInTime { get { return fInTime; } set { fInTime = value; } } /// /// 接箍料物料 /// [Description("接箍料物料")] [Nullable(true)] [DataLength(100)] public string BlWlDesc { get { return blWlDesc; } set { blWlDesc = value; } } /// /// 探伤要求(4项之一,408401) /// [Description("探伤要求")] [Nullable(true)] [DataLength(40)] public string DemandDetection { get { return demandDetection; } set { demandDetection = value; } } /// /// 喷砂要求(4项之一) /// [Description("喷砂要求")] [Nullable(true)] [DataLength(40)] public string DemandBlast { get { return demandBlast; } set { demandBlast = value; } } /// /// 磷化镀铜要求(4项之一,408402) /// [Description("磷化镀铜要求")] [Nullable(true)] [DataLength(40)] public string DemandBonderizing { get { return demandBonderizing; } set { demandBonderizing = value; } } /// /// 压印喷标要求(4项之一) /// [Description("压印喷标要求")] [Nullable(true)] [DataLength(40)] public string DemandCopper { get { return demandCopper; } set { demandCopper = value; } } /// /// 涂层类型(0.无、1镀铜、2磷化、3镀铜及磷化) /// [Description("涂层类型")] [Nullable(true)] [DataLength(1)] public string CoatType { get { return coatType; } set { coatType = 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 CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 原料工艺文件号 /// [Description("原料工艺文件号")] [Nullable(true)] [DataLength(32)] public string CraftFileNo { get { return craftFileNo; } set { craftFileNo = value; } } /// /// 原料工艺序号 /// [Description("原料工艺序号")] [Nullable(true)] [DataLength(5)] public decimal? CraftSeq { get { return craftSeq; } set { craftSeq = value; } } /// /// 接箍合同号 /// [Description("接箍合同号")] [Nullable(true)] [DataLength(40)] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = value; } } /// /// 质量封锁标志(0未封锁、1质量封锁) /// [Description("质量封锁标志")] [Nullable(true)] [DataLength(1)] public string LockFlag { get { return lockFlag; } set { lockFlag = value; } } /// /// 管理封锁标志(0未封锁、1管理封锁) /// [Description("管理封锁标志")] [Nullable(true)] [DataLength(1)] public string MngLockFlag { get { return mngLockFlag; } set { mngLockFlag = value; } } /// /// 管理封锁备注 /// [Description("管理封锁备注")] [Nullable(true)] [DataLength(100)] public string MngLockRemark { get { return mngLockRemark; } set { mngLockRemark = value; } } /// /// 质量封锁备注 /// [Description("质量封锁备注")] [Nullable(true)] [DataLength(100)] public string LockRemark { get { return lockRemark; } set { lockRemark = value; } } /// /// 材料序号(4位流水号 0001) /// private string matNoXh = ""; /// /// 材料类别(8014在制品、成品、商品) /// private string productFlag = ""; /// /// 材料状态(801501在制品阶段、801502成品、801503商品...) /// private string matStatus = ""; /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 属性分组号 /// private string jgGroupId = ""; /// /// (原)工序订单编号 /// private string proPlanId1 = ""; /// /// (原)属性分组号 /// private string jgGroupId1 = ""; /// /// 机床编号(车丝) /// private string machNo = ""; /// /// 机床名称 /// private string machNm = ""; /// /// 来源分类代码(8013) /// private string matOriginCode = ""; /// /// 来源分类名称 /// private string matOriginName = ""; /// /// 来源地代码(产线、外委、外购对应的具体项目) /// private string soureCode = ""; /// /// 来源地名称 /// private string soureName = ""; /// /// 个数 /// private decimal? pieces = null; /// /// 总重量 /// private decimal? weight = null; /// /// 客户Alpha编号 /// private string custAlphaNo = ""; /// /// 产品特殊要求描述 /// private string orderSpecialDesc = ""; /// /// 用途代码 /// private string alphaCode = ""; /// /// 是否离线(0否,1是) /// private string offlineLog = ""; /// /// 利库后压印喷标要求 /// private string demandCopperLk = ""; /// /// 利库后探伤要求 /// private string demandDetectionLk = ""; /// /// 利库后喷砂要求 /// private string demandBlastLk = ""; /// /// 利库后镀铜磷化要求 /// private string demandBonderizingLk = ""; /// /// 利库压印处理状态(0待处理1已处理2无要求) /// private string impressDealStatus = ""; /// /// 利库喷标处理状态(0待处理1已处理2无要求) /// private string copperDealStatus = ""; /// /// 利库探伤处理状态(0待处理1已处理2无要求) /// private string detectDealStatus = ""; /// /// 利库喷砂处理状态(0待处理1已处理2无要求) /// private string blastDealStatus = ""; /// /// 利库镀铜处理状态(0待处理1已处理2无要求) /// private string pltCuDealStatus = ""; /// /// 利库磷化处理状态(0待处理1已处理2无要求) /// private string phosDealStatus = ""; /// /// 状态('0',未封锁 '1',封锁)利库专用 /// private string lockLiku = ""; /// /// 交易单号 /// private string dealOrde = ""; /// /// 判定状态(0.未判定,1.申请判定,2.已判定) /// private string deterStatus = ""; /// /// 判定单号 /// private string deterNo = ""; /// /// 判定结果(407407) /// private string deterResults = ""; /// /// 框号 /// private string kepNo = ""; /// /// 仓库代码 /// private string storageNo = ""; /// /// 库位代码 /// private string locationNo = ""; /// /// 仓库类型(8003 ) /// private string storageAttr = ""; /// /// 仓库类型描述 /// private string storageAttrName = ""; /// /// 库类别代码(8002 ) /// private string storageTypeNo = ""; /// /// 库类别代码描述 /// private string storageTypeName = ""; /// /// 管理单位代码(最底层科室代码) /// private string managementNo = ""; /// /// 管理单位名称(最底层科室名称) /// private string managementName = ""; /// /// 备注 /// private string memo = ""; /// /// 修改人 /// private string updateName = ""; /// /// 材料序号(4位流水号 0001) /// [Description("材料序号")] [Nullable(false)] [DataLength(4)] public string MatNoXh { get { return matNoXh; } set { matNoXh = value; } } /// /// 材料类别(8014在制品、成品、商品) /// [Description("材料类别")] [Nullable(true)] [DataLength(10)] public string ProductFlag { get { return productFlag; } set { productFlag = value; } } /// /// 材料状态(801501在制品阶段、801502成品、801503商品...) /// [Description("材料状态")] [Nullable(true)] [DataLength(10)] public string MatStatus { get { return matStatus; } set { matStatus = value; } } /// /// 接箍工序订单编号 /// [Description("接箍工序订单编号")] [Nullable(true)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 属性分组号 /// [Description("属性分组号")] [Nullable(true)] [DataLength(10)] public string JgGroupId { get { return jgGroupId; } set { jgGroupId = value; } } /// /// (原)工序订单编号 /// [Description("工序订单编号")] [Nullable(true)] [DataLength(20)] public string ProPlanId1 { get { return proPlanId1; } set { proPlanId1 = value; } } /// /// (原)属性分组号 /// [Description("属性分组号")] [Nullable(true)] [DataLength(10)] public string JgGroupId1 { get { return jgGroupId1; } set { jgGroupId1 = value; } } /// /// 机床编号(车丝) /// [Description("机床编号")] [Nullable(true)] [DataLength(10)] public string MachNo { get { return machNo; } set { machNo = value; } } /// /// 机床名称 /// [Description("机床名称")] [Nullable(true)] [DataLength(10)] public string MachNm { get { return machNm; } set { machNm = value; } } /// /// 来源分类代码(8013) /// [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(10)] 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(6)] public decimal? Pieces { get { return pieces; } set { pieces = value; } } /// /// 总重量 /// [Description("总重量")] [Nullable(true)] [DataLength(8)] public decimal? Weight { get { return weight; } set { weight = value; } } /// /// 客户Alpha编号 /// [Description("客户Alpha编号")] [Nullable(true)] [DataLength(20)] public string CustAlphaNo { get { return custAlphaNo; } set { custAlphaNo = value; } } /// /// 产品特殊要求描述 /// [Description("产品特殊要求描述")] [Nullable(true)] [DataLength(4000)] public string OrderSpecialDesc { get { return orderSpecialDesc; } set { orderSpecialDesc = value; } } /// /// 用途代码 /// [Description("用途代码")] [Nullable(true)] [DataLength(20)] public string AlphaCode { get { return alphaCode; } set { alphaCode = value; } } /// /// 是否离线(0否,1是) /// [Description("是否离线")] [Nullable(true)] [DataLength(1)] public string OfflineLog { get { return offlineLog; } set { offlineLog = value; } } /// /// 利库后压印喷标要求 /// [Description("利库后压印喷标要求")] [Nullable(true)] [DataLength(400)] public string DemandCopperLk { get { return demandCopperLk; } set { demandCopperLk = value; } } /// /// 利库后探伤要求 /// [Description("利库后探伤要求")] [Nullable(true)] [DataLength(200)] public string DemandDetectionLk { get { return demandDetectionLk; } set { demandDetectionLk = value; } } /// /// 利库后喷砂要求 /// [Description("利库后喷砂要求")] [Nullable(true)] [DataLength(200)] public string DemandBlastLk { get { return demandBlastLk; } set { demandBlastLk = value; } } /// /// 利库后镀铜磷化要求 /// [Description("利库后镀铜磷化要求")] [Nullable(true)] [DataLength(200)] public string DemandBonderizingLk { get { return demandBonderizingLk; } set { demandBonderizingLk = value; } } /// /// 利库压印处理状态(0待处理1已处理2无要求) /// [Description("利库压印处理状态")] [Nullable(true)] [DataLength(1)] public string ImpressDealStatus { get { return impressDealStatus; } set { impressDealStatus = value; } } /// /// 利库喷标处理状态(0待处理1已处理2无要求) /// [Description("利库喷标处理状态")] [Nullable(true)] [DataLength(1)] public string CopperDealStatus { get { return copperDealStatus; } set { copperDealStatus = value; } } /// /// 利库探伤处理状态(0待处理1已处理2无要求) /// [Description("利库探伤处理状态")] [Nullable(true)] [DataLength(1)] public string DetectDealStatus { get { return detectDealStatus; } set { detectDealStatus = value; } } /// /// 利库喷砂处理状态(0待处理1已处理2无要求) /// [Description("利库喷砂处理状态")] [Nullable(true)] [DataLength(1)] public string BlastDealStatus { get { return blastDealStatus; } set { blastDealStatus = value; } } /// /// 利库镀铜处理状态(0待处理1已处理2无要求) /// [Description("利库镀铜处理状态")] [Nullable(true)] [DataLength(1)] public string PltCuDealStatus { get { return pltCuDealStatus; } set { pltCuDealStatus = value; } } /// /// 利库磷化处理状态(0待处理1已处理2无要求) /// [Description("利库磷化处理状态")] [Nullable(true)] [DataLength(1)] public string PhosDealStatus { get { return phosDealStatus; } set { phosDealStatus = value; } } /// /// 状态('0',未封锁 '1',封锁)利库专用 /// [Description("状态利库专用")] [Nullable(true)] [DataLength(1)] public string LockLiku { get { return lockLiku; } set { lockLiku = value; } } /// /// 交易单号 /// [Description("交易单号")] [Nullable(true)] [DataLength(40)] public string DealOrde { get { return dealOrde; } set { dealOrde = value; } } /// /// 判定状态(0.未判定,1.申请判定,2.已判定) /// [Description("判定状态")] [Nullable(true)] [DataLength(1)] public string DeterStatus { get { return deterStatus; } set { deterStatus = value; } } /// /// 判定单号 /// [Description("判定单号")] [Nullable(true)] [DataLength(40)] public string DeterNo { get { return deterNo; } set { deterNo = value; } } /// /// 判定结果(407407) /// [Description("判定结果")] [Nullable(true)] [DataLength(10)] public string DeterResults { get { return deterResults; } set { deterResults = value; } } /// /// 框号 /// [Description("框号")] [Nullable(true)] [DataLength(20)] public string KepNo { get { return kepNo; } set { kepNo = value; } } /// /// 仓库代码 /// [Description("仓库名称")] [Nullable(true)] [DataLength(5)] public string StorageNo { get { return storageNo; } set { storageNo = value; } } /// /// 库位代码 /// [Description("库位代码")] [Nullable(true)] [DataLength(10)] public string LocationNo { get { return locationNo; } set { locationNo = value; } } /// /// 仓库类型(8003 ) /// [Description("仓库类型")] [Nullable(true)] [DataLength(10)] public string StorageAttr { get { return storageAttr; } set { storageAttr = value; } } /// /// 仓库类型描述 /// [Description("仓库类型描述")] [Nullable(true)] [DataLength(20)] public string StorageAttrName { get { return storageAttrName; } set { storageAttrName = value; } } /// /// 库类别代码(8002 ) /// [Description("库类别代码")] [Nullable(true)] [DataLength(10)] public string StorageTypeNo { get { return storageTypeNo; } set { storageTypeNo = value; } } /// /// 库类别代码描述 /// [Description("库类别代码描述")] [Nullable(true)] [DataLength(20)] public string StorageTypeName { get { return storageTypeName; } set { storageTypeName = 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; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 备料品名代码 /// private string produccodeBl = ""; /// /// 备料品名描述 /// private string producnameBl = ""; /// /// 备料标准代码 /// private string stdCodeBl = ""; /// /// 备料标准名称 /// private string stdNameBl = ""; /// /// 备料钢级(牌号)代码 /// private string steelcodeBl = ""; /// /// 备料钢级(牌号)名称 /// private string steelnameBl = ""; /// /// 备料标准类别代码 /// private string stdStyleBl = ""; /// /// 备料标准类别描述(PSL1....) /// private string stdStyleDescBl = ""; /// /// 备料扣型代码 /// private string modelCodeBl = ""; /// /// 备料扣型描述 /// private string modelDescBl = ""; /// /// 备料外径(mm) /// private decimal? minDBl = null; /// /// 备料壁厚(mm) /// private decimal? minHBl = null; /// /// 备料品名代码 /// [Description("备料品名代码")] [Nullable(true)] [DataLength(20)] public string ProduccodeBl { get { return produccodeBl; } set { produccodeBl = value; } } /// /// 备料品名描述 /// [Description("备料品名描述")] [Nullable(true)] [DataLength(100)] public string ProducnameBl { get { return producnameBl; } set { producnameBl = value; } } /// /// 备料标准代码 /// [Description("备料标准代码")] [Nullable(true)] [DataLength(20)] public string StdCodeBl { get { return stdCodeBl; } set { stdCodeBl = value; } } /// /// 备料标准名称 /// [Description("备料标准名称")] [Nullable(true)] [DataLength(200)] public string StdNameBl { get { return stdNameBl; } set { stdNameBl = value; } } /// /// 备料钢级(牌号)代码 /// [Description("备料钢级(牌号)代码")] [Nullable(true)] [DataLength(10)] public string SteelcodeBl { get { return steelcodeBl; } set { steelcodeBl = value; } } /// /// 备料钢级(牌号)名称 /// [Description("备料钢级(牌号)名称")] [Nullable(true)] [DataLength(100)] public string SteelnameBl { get { return steelnameBl; } set { steelnameBl = value; } } /// /// 备料标准类别代码 /// [Description("备料标准类别代码")] [Nullable(true)] [DataLength(3)] public string StdStyleBl { get { return stdStyleBl; } set { stdStyleBl = value; } } /// /// 备料标准类别描述(PSL1....) /// [Description("备料标准类别描述(PSL1....)")] [Nullable(true)] [DataLength(50)] public string StdStyleDescBl { get { return stdStyleDescBl; } set { stdStyleDescBl = value; } } /// /// 备料扣型代码 /// [Description("备料扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCodeBl { get { return modelCodeBl; } set { modelCodeBl = value; } } /// /// 备料扣型描述 /// [Description("备料扣型描述")] [Nullable(true)] [DataLength(100)] public string ModelDescBl { get { return modelDescBl; } set { modelDescBl = value; } } /// /// 备料外径(mm) /// [Description("备料外径(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinDBl { get { return minDBl; } set { minDBl = value; } } /// /// 备料壁厚(mm) /// [Description("备料壁厚(mm)")] [Nullable(true)] [DataLength(6)] public decimal? MinHBl { get { return minHBl; } set { minHBl = value; } } /// /// 交货编码PK /// private string ordLnDlyPk = ""; /// /// 主合同号 /// private string orderNo = ""; /// /// 主合同行号 /// private string orderSeq = ""; /// /// 主交货编码 /// private string deliveryNo = ""; /// /// 交货编码PK /// [Description("交货编码PK")] [Nullable(true)] [DataLength(50)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 主合同号 /// [Description("主合同号")] [Nullable(true)] [DataLength(300)] 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 DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 余材个数 /// private decimal? yuNum = null; /// /// 加工工序排产状态min /// private string flagMin = ""; /// /// 余材个数 /// [Description("余材个数")] [Nullable(true)] [DataLength(6)] public decimal? YuNum { get { return yuNum; } set { yuNum = value; } } /// /// 加工工序排产状态min /// [Description("加工工序排产状态min")] [Nullable(true)] [DataLength(3)] public string FlagMin { get { return flagMin; } set { flagMin = value; } } /// /// 交库状态(00,合格,11,待处理,22,判废,10,处理合格,12,处理判废) /// private string qcmStaus = ""; /// /// 交库状态(00,合格,11,待处理,22,判废,10,处理合格,12,处理判废) /// [Description("交库状态")] [Nullable(true)] [DataLength(2)] public string QcmStaus { get { return qcmStaus; } set { qcmStaus = value; } } } }