using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.pss.plnsaleord.jggxpln.model { /// /// 数据库表COUPLING_MAT_BUTTRESS所对应的实体类(生成工具:代码生成工具3.0) /// 作者:xiaohai-PC 时间:2016-07-06 /// public class CouplingMatButtressEntity { /// /// 材料号(作业工单号+实绩编号+3位流水) /// private string matNo = ""; /// /// 材料序号(4位流水号 0001) /// private string matNoXh = ""; /// /// 材料类别(8014在制品、成品、商品) /// private string productFlag = ""; /// /// 材料状态(801501在制品阶段、801502成品、801503商品...) /// private string matStatus = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 批号(炉批号) /// private string batchNo = ""; /// /// 实绩编号 /// private string resultNo = ""; /// /// 炉次计划号 /// private string zyPlanId = ""; /// /// 工单号(炉次计划号+01流水) /// private string woId = ""; /// /// 接箍工序订单编号 /// private string proPlanId = ""; /// /// 个数 /// private string pieces = ""; /// /// 总重量 /// private string weight = ""; /// /// 是否委外锯切(0否,1是) /// private string ifOutCut = ""; /// /// 是否委外粗加工(0否,1是) /// private string ifOutCjg = ""; /// /// 是否委外压印(0否,1是) /// private string ifOutImpress = ""; /// /// 是否委外车丝(0否,1是) /// private string ifOutLathe = ""; /// /// 是否委外探伤(0否,1是) /// private string ifOutDetect = ""; /// /// 是否委外喷砂(0否,1是) /// private string ifOutBlast = ""; /// /// 是否委外镀铜(0否,1是) /// private string ifOutPltCu = ""; /// /// 是否委外磷化(0否,1是) /// private string ifOutPhos = ""; /// /// 压印喷标要求(4项之一) /// private string demandCopper = ""; /// /// 探伤要求(4项之一,408401) /// private string demandDetection = ""; /// /// 喷砂要求(4项之一) /// private string demandBlast = ""; /// /// 磷化镀铜要求(4项之一,408402) /// private string demandBonderizing = ""; /// /// 客户Alpha编号 /// private string custAlphaNo = ""; /// /// 产品特殊要求描述 /// private string orderSpecialDesc = ""; /// /// 用途代码 /// private string alphaCode = ""; /// /// 框号 /// 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 createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 是否离线(0否,1是) /// private string offlineLog = ""; /// /// 属性分组号 /// private string jgGroupId = ""; /// /// 利库后压印喷标要求 /// 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 likuBillId = ""; /// /// 材料号(作业工单号+实绩编号+3位流水) /// [Description("材料号(作业工单号+实绩编号+3位流水)")] [Nullable(false)] [DataLength(40)] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 材料序号(4位流水号 0001) /// [Description("材料序号(4位流水号 0001)")] [Nullable(false)] [DataLength(4)] public string MatNoXh { get { return matNoXh; } set { matNoXh = value; } } /// /// 材料类别(8014在制品、成品、商品) /// [Description("材料类别(8014在制品、成品、商品)")] [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(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(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 炉次计划号 /// [Description("炉次计划号")] [Nullable(true)] [DataLength(20)] public string ZyPlanId { get { return zyPlanId; } set { zyPlanId = value; } } /// /// 工单号(炉次计划号+01流水) /// [Description("工单号(炉次计划号+01流水)")] [Nullable(true)] [DataLength(20)] public string WoId { get { return woId; } set { woId = value; } } /// /// 接箍工序订单编号 /// [Description("接箍工序订单编号")] [Nullable(true)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 个数 /// [Description("个数")] [Nullable(true)] [DataLength(6)] public string Pieces { get { return pieces; } set { pieces = value; } } /// /// 总重量 /// [Description("总重量")] [Nullable(true)] [DataLength(6)] public string Weight { get { return weight; } set { weight = value; } } /// /// 是否委外锯切(0否,1是) /// [Description("是否委外锯切(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutCut { get { return ifOutCut; } set { ifOutCut = value; } } /// /// 是否委外粗加工(0否,1是) /// [Description("是否委外粗加工(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutCjg { get { return ifOutCjg; } set { ifOutCjg = value; } } /// /// 是否委外压印(0否,1是) /// [Description("是否委外压印(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutImpress { get { return ifOutImpress; } set { ifOutImpress = value; } } /// /// 是否委外车丝(0否,1是) /// [Description("是否委外车丝(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutLathe { get { return ifOutLathe; } set { ifOutLathe = value; } } /// /// 是否委外探伤(0否,1是) /// [Description("是否委外探伤(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutDetect { get { return ifOutDetect; } set { ifOutDetect = value; } } /// /// 是否委外喷砂(0否,1是) /// [Description("是否委外喷砂(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutBlast { get { return ifOutBlast; } set { ifOutBlast = value; } } /// /// 是否委外镀铜(0否,1是) /// [Description("是否委外镀铜(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutPltCu { get { return ifOutPltCu; } set { ifOutPltCu = value; } } /// /// 是否委外磷化(0否,1是) /// [Description("是否委外磷化(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfOutPhos { get { return ifOutPhos; } set { ifOutPhos = value; } } /// /// 压印喷标要求(4项之一) /// [Description("压印喷标要求(4项之一)")] [Nullable(true)] [DataLength(400)] public string DemandCopper { get { return demandCopper; } set { demandCopper = value; } } /// /// 探伤要求(4项之一,408401) /// [Description("探伤要求(4项之一,408401)")] [Nullable(true)] [DataLength(200)] public string DemandDetection { get { return demandDetection; } set { demandDetection = value; } } /// /// 喷砂要求(4项之一) /// [Description("喷砂要求(4项之一)")] [Nullable(true)] [DataLength(200)] public string DemandBlast { get { return demandBlast; } set { demandBlast = value; } } /// /// 磷化镀铜要求(4项之一,408402) /// [Description("磷化镀铜要求(4项之一,408402)")] [Nullable(true)] [DataLength(200)] public string DemandBonderizing { get { return demandBonderizing; } set { demandBonderizing = 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; } } /// /// 框号 /// [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("仓库类型(8003 )")] [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("库类别代码(8002 )")] [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 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 UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 是否离线(0否,1是) /// [Description("是否离线(0否,1是)")] [Nullable(true)] [DataLength(1)] public string OfflineLog { get { return offlineLog; } set { offlineLog = value; } } /// /// 属性分组号 /// [Description("属性分组号")] [Nullable(true)] [DataLength(10)] public string JgGroupId { get { return jgGroupId; } set { jgGroupId = 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("利库压印处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string ImpressDealStatus { get { return impressDealStatus; } set { impressDealStatus = value; } } /// /// 利库喷标处理状态(0待处理1已处理2无要求) /// [Description("利库喷标处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string CopperDealStatus { get { return copperDealStatus; } set { copperDealStatus = value; } } /// /// 利库探伤处理状态(0待处理1已处理2无要求) /// [Description("利库探伤处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string DetectDealStatus { get { return detectDealStatus; } set { detectDealStatus = value; } } /// /// 利库喷砂处理状态(0待处理1已处理2无要求) /// [Description("利库喷砂处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string BlastDealStatus { get { return blastDealStatus; } set { blastDealStatus = value; } } /// /// 利库镀铜处理状态(0待处理1已处理2无要求) /// [Description("利库镀铜处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string PltCuDealStatus { get { return pltCuDealStatus; } set { pltCuDealStatus = value; } } /// /// 利库磷化处理状态(0待处理1已处理2无要求) /// [Description("利库磷化处理状态(0待处理1已处理2无要求)")] [Nullable(true)] [DataLength(1)] public string PhosDealStatus { get { return phosDealStatus; } set { phosDealStatus = value; } } /// /// 状态('0',未封锁 '1',封锁)利库专用 /// [Description("状态('0',未封锁 '1',封锁)利库专用")] [Nullable(true)] [DataLength(1)] public string LockLiku { get { return lockLiku; } set { lockLiku = value; } } /// /// 利库单号 /// [Description("利库单号")] [Nullable(true)] [DataLength(20)] public string LikuBillId { get { return likuBillId; } set { likuBillId = value; } } } }