using System; using System.Collections.Generic; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; using System.ComponentModel; namespace com.steering.pss.plnsaleord.order.model { public class PlnOrdJgEditEntity { /// /// 接箍合同号 /// private string jgOrderno = ""; /// /// 接箍码 /// private string codeJg = ""; /// /// 备料码 /// private string codeJgBl = ""; /// /// 接箍个数 /// private string numJg = ""; /// /// 接箍重量 /// private string weightJg = ""; /// /// 单个接箍加长(mm) /// private string singleAddlen = ""; /// /// 备料重量 /// private string jgblReqWeight = ""; /// /// 备料支数 /// private string numJgbl = ""; /// /// 备料需求长度(m) /// private string jgblSumlenth = ""; /// /// 创建人 /// private string createName = ""; /// /// 接箍合同号 /// [Nullable(true)] [DataLength(20)] public string JgOrderno { get { return jgOrderno; } set { jgOrderno = value; } } /// /// 接箍码 /// [Nullable(true)] [DataLength(20)] public string CodeJg { get { return codeJg; } set { codeJg = value; } } /// /// 备料码 /// [Nullable(true)] [DataLength(20)] public string CodeJgBl { get { return codeJgBl; } set { codeJgBl = value; } } /// /// 接箍个数 /// [Nullable(true)] [DataLength(20)] public string NumJg { get { return numJg; } set { numJg = value; } } /// /// 接箍重量 /// [Nullable(true)] [DataLength(20)] public string WeightJg { get { return weightJg; } set { weightJg = value; } } /// /// 单个接箍加长长度 /// [Nullable(true)] [DataLength(20)] public string SingleAddlen { get { return singleAddlen; } set { singleAddlen = value; } } /// /// 备料重量 /// [Nullable(true)] [DataLength(20)] public string JgblReqWeight { get { return jgblReqWeight; } set { jgblReqWeight = value; } } /// /// 备料支数 /// [Nullable(true)] [DataLength(20)] public string NumJgbl { get { return numJgbl; } set { numJgbl = value; } } /// /// 接箍料需求长度 /// [Nullable(true)] [DataLength(20)] public string JgblSumlenth { get { return jgblSumlenth; } set { jgblSumlenth = value; } } /// /// 创建人 /// [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } } }