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.plan.order.model { /// /// 数据库表PLN_SALEORDER_SET所对应的实体类(生成工具:代码生成工具3.0) /// 作者:xiaohai-PC 时间:2015-09-29 /// public class PlnSaleorderSetEntity { /// /// 轧制月份 /// private string rollMonth = ""; /// /// 合同行号 /// private string orderNoSeq = ""; /// /// 交货编码PK /// private string ordLnDlyPk = ""; /// /// 导入时间 /// private string impTime = ""; /// /// 月份同步标识 /// private string ifSetMonth = ""; /// /// 状态设置次数 /// private decimal? numSetStatus = null; /// /// 最后设置状态 /// private string endStatus = ""; /// /// 生产分类 /// private string produceSort = ""; /// /// 生产分类同步标示 /// private string ifSetProduceSort = ""; /// /// 合同来源 /// private string orderfrom = ""; /// /// 合同来源同步标示 /// private string ifSetOrderfrom = ""; /// /// 轧制月份 /// [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)] 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 decimal? 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 ProduceSort { get { return produceSort; } set { produceSort = value; } } /// /// 生产分类同步标示 /// [Description("生产分类同步")] [Nullable(true)] [DataLength(1)] public string IfSetProduceSort { get { return ifSetProduceSort; } set { ifSetProduceSort = value; } } /// /// 合同来源 /// [Description("合同来源")] [Nullable(true)] [DataLength(20)] public string Orderfrom { get { return orderfrom; } set { orderfrom = value; } } /// /// 合同来源同步标示 /// [Description("合同来源同步")] [Nullable(true)] [DataLength(1)] public string IfSetOrderfrom { get { return ifSetOrderfrom; } set { ifSetOrderfrom = value; } } } }