using Core.Mes.Client.Comm.Attribute; using System.ComponentModel; /// /// 数据库表PLN_ORDER_JG所对应的实体类(生成工具:代码生成工具3.0) /// 作者:MS-20181101OWOO 时间:2019-03-07 /// namespace com.steering.mes.mcp.entity { public class PlnOrderJgEntity { /// /// 接箍合同号 /// private string jgOrderno = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货编码 /// private string deliveryNo = ""; /// /// 客户编号 /// private string buyerId = ""; /// /// 客户名称 /// private string buyerName = ""; /// /// 合同重量 /// private decimal? orderweight = null; /// /// 合同个数 /// private decimal? ordernum = null; /// /// 交货行PK /// private string ordLnDlyPk = ""; /// /// 探伤要求 /// private string demandDetection = ""; /// /// 磷化镀铜要求 /// private string demandBonderizing = ""; /// /// 压印喷标 /// private string demandCopper = ""; /// /// 喷砂要求 /// private string demandBlast = ""; /// /// 最终用户(来源客户表) /// private string finalUser = ""; /// /// 最终用户描述 /// private string finalUserDesc = ""; /// /// 是否接箍成品合同 /// private string ifJgSaleord = ""; /// /// 工单号 /// private string woId = ""; //已挂个数 private string inPieces = ""; /// /// 已挂合同个数 /// [Description("已挂合同个数")] [Nullable(false)] [DataLength(40)] public string InPieces { get { return inPieces; } set { inPieces = value; } } //要挂合同个数 private string prePieces = ""; /// /// 要挂合同个数 /// [Description("要挂合同个数")] [Nullable(false)] [DataLength(40)] public string PrePieces { get { return prePieces; } set { prePieces = value; } } /// /// 接箍合同号 /// [Description("接箍合同号")] [Nullable(false)] [DataLength(40)] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = 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 DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 客户编号 /// [Description("客户编号")] [Nullable(true)] [DataLength(20)] public string BuyerId { get { return buyerId; } set { buyerId = value; } } /// /// 客户名称 /// [Description("客户名称")] [Nullable(true)] [DataLength(100)] public string BuyerName { get { return buyerName; } set { buyerName = value; } } /// /// 合同重量 /// [Description("合同重量")] [Nullable(true)] [DataLength(16)] public decimal? Orderweight { get { return orderweight; } set { orderweight = value; } } /// /// 合同个数 /// [Description("合同个数")] [Nullable(true)] [DataLength(10)] public decimal? Ordernum { get { return ordernum; } set { ordernum = value; } } /// /// 交货行PK /// [Description("交货行PK")] [Nullable(true)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 探伤要求 /// [Description("探伤要求")] [Nullable(true)] [DataLength(200)] public string DemandDetection { get { return demandDetection; } set { demandDetection = value; } } /// /// 磷化镀铜要求 /// [Description("磷化镀铜要求")] [Nullable(true)] [DataLength(200)] public string DemandBonderizing { get { return demandBonderizing; } set { demandBonderizing = value; } } /// /// 压印喷标 /// [Description("压印喷标要求")] [Nullable(true)] [DataLength(400)] public string DemandCopper { get { return demandCopper; } set { demandCopper = value; } } /// /// 喷砂要求 /// [Description("喷砂要求")] [Nullable(true)] [DataLength(200)] public string DemandBlast { get { return demandBlast; } set { demandBlast = value; } } /// /// 最终用户(来源客户表) /// [Description("最终用户(来源客户表)")] [Nullable(true)] [DataLength(20)] public string FinalUser { get { return finalUser; } set { finalUser = value; } } /// /// 最终用户描述 /// [Description("最终用户描述")] [Nullable(true)] [DataLength(100)] public string FinalUserDesc { get { return finalUserDesc; } set { finalUserDesc = value; } } /// /// 是否接箍成品合同 /// [Description("是否接箍成品合同")] [Nullable(true)] [DataLength(1)] public string IfJgSaleord { get { return ifJgSaleord; } set { ifJgSaleord = value; } } /// /// 工单号 /// [Description("工单号")] [Nullable(true)] [DataLength(30)] public string WoId { get { return woId; } set { woId = value; } } private string codeJg = ""; [Description("接箍码")] public string CodeJg { get { return codeJg; } set { codeJg = value; } } private string gowhereName = ""; [Description("去向")] public string GowhereName { get { return gowhereName; } set { gowhereName = value; } } private string num = ""; [Description("可拆分个")] public string Num { get { return num; } set { num = value; } } } }