using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace com.steering.pss.plnsaleord.order.model { /// /// 数据库表PLN_SALEORD_SET所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-4E32QV0 时间:2015-12-24 /// public class PlnSaleordSetEntity { /// /// 考核年月 /// private string checkMoth = ""; /// /// 轧制月份 /// private string rollMonth = ""; /// /// 合同行号 /// private string orderNoSeq = ""; /// /// 交货编码PK /// private string ordLnDlyPk = ""; /// /// 排产流水号 /// private string plnDivideId = ""; /// /// 导入时间 /// private string impTime = ""; /// /// 月份同步标识 /// private string ifSetMonth = ""; /// /// 状态设置次数 /// private string numSetStatus = ""; /// /// 最后设置状态 /// private string endStatus = ""; /// /// 操作人 /// private string updateMan = ""; /// /// 当前设置状态 /// private string planstatus = ""; /// /// 当前轧制月份 /// private string rollMonthNow = ""; /// /// 交货编码 /// private string deliveryNo = ""; /// /// 品名描述 /// private string producname = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 长度描述 /// private string lengthdisc = ""; /// /// 合同紧急度编码 /// private string priority = ""; /// /// 合同紧急度名称 /// private string priorityName = ""; /// /// 紧急度备注 /// private string priorityMemo = ""; [Description("合同紧急度编码")] [Nullable(true)] [DataLength(20)] public string Priority { get { return priority; } set { priority = value; } } [Description("合同紧急度名称")] [Nullable(true)] [DataLength(20)] public string PriorityName { get { return priorityName; } set { priorityName = value; } } [Description("紧急度备注")] [Nullable(true)] [DataLength(200)] public string PriorityMemo { get { return priorityMemo; } set { priorityMemo = value; } } /// /// 当前设置状态 /// [Description("考核年月")] [Nullable(true)] [DataLength(20)] public string CheckMoth { get { return checkMoth; } set { checkMoth = value; } } /// /// 当前设置状态 /// [Description("当前合同状态")] [Nullable(true)] [DataLength(20)] public string Planstatus { get { return planstatus; } set { planstatus = value; } } /// /// 当前轧制月份 /// [Description("当前轧制月份")] [Nullable(true)] [DataLength(20)] public string RollMonthNow { get { return rollMonthNow; } set { rollMonthNow = value; } } /// /// 交货编码 /// [Description("交货编码")] [Nullable(true)] [DataLength(20)] public string DeliveryNo { get { return deliveryNo; } set { deliveryNo = value; } } /// /// 品名描述 /// [Description("品名")] [Nullable(true)] [DataLength(100)] public string Producname { get { return producname; } set { producname = value; } } /// /// 产品规格描述 /// [Description("产品规格")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 长度描述 /// [Description("长度描述")] [Nullable(true)] [DataLength(100)] public string Lengthdisc { get { return lengthdisc; } set { lengthdisc = value; } } /// /// 轧制月份 /// [Description("轧制月份")] [Nullable(true)] [DataLength(20)] public string RollMonth { get { return rollMonth; } set { rollMonth = value; } } /// /// 合同行号 /// [Description("合同行号")] [Nullable(true)] [DataLength(40)] public string OrderNoSeq { get { return orderNoSeq; } set { orderNoSeq = value; } } /// /// 交货编码PK /// [Description("交货编码PK")] [Nullable(true)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 排产流水号 /// [Description("排产流水号")] [Nullable(true)] [DataLength(10)] public string PlnDivideId { get { return plnDivideId; } set { plnDivideId = value; } } /// /// 导入时间 /// [Description("导入时间")] [Nullable(true)] public string ImpTime { get { return impTime; } set { impTime = value; } } /// /// 月份同步标识 /// [Description("月份同步标识")] [Nullable(true)] [DataLength(10)] public string IfSetMonth { get { return ifSetMonth; } set { ifSetMonth = value; } } /// /// 状态设置次数 /// [Description("状态设置次数")] [Nullable(true)] [DataLength(5)] public string NumSetStatus { get { return numSetStatus; } set { numSetStatus = value; } } /// /// 最后设置状态 /// [Description("最后设置状态")] [Nullable(true)] [DataLength(20)] public string EndStatus { get { return endStatus; } set { endStatus = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] public string UpdateMan { get { return updateMan; } set { updateMan = value; } } } }