using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace Core.StlMes.Client.PlnSaleOrd.工序排产.entity { /// /// 数据库表PLN_PASSMODEL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-11-29 /// public class PlnPassmodelEntity { /// /// 孔型计划编号(产线编码+年月日+3位流水号) /// private string passmPlanId = ""; /// /// 生产年月 /// private string proMonth = ""; /// /// 产线内生产顺序号 /// private decimal? gxProSeq = null; /// /// 产线编码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 孔型代码(4007) /// private string passCode = ""; /// /// 孔型描述 /// private string passName = ""; /// /// 计划支数 /// private decimal? planNum = null; /// /// 开始时间 /// private string beginTime = ""; /// /// 结束时间 /// private string endTime = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 孔型计划编号(产线编码+年月日+3位流水号) /// [Description("孔型计划编号")] [Nullable(false)] [DataLength(20)] public string PassmPlanId { get { return passmPlanId; } set { passmPlanId = value; } } /// /// 生产年月 /// [Description("生产年月")] [Nullable(true)] [DataLength(20)] public string ProMonth { get { return proMonth; } set { proMonth = value; } } /// /// 产线内生产顺序号 /// [Description("生产顺序")] [Nullable(true)] [DataLength(10)] public decimal? GxProSeq { get { return gxProSeq; } set { gxProSeq = value; } } /// /// 产线编码 /// [Description("产线编码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 孔型代码(4007) /// [Description("孔型代码")] [Nullable(true)] [DataLength(20)] public string PassCode { get { return passCode; } set { passCode = value; } } /// /// 孔型描述 /// [Description("孔型描述")] [Nullable(true)] [DataLength(100)] public string PassName { get { return passName; } set { passName = value; } } /// /// 计划支数 /// [Description("计划支数")] [Nullable(true)] [DataLength(10)] public decimal? PlanNum { get { return planNum; } set { planNum = value; } } /// /// 开始时间 /// [Description("开始时间")] [Nullable(true)] public string BeginTime { get { return beginTime; } set { beginTime = value; } } /// /// 结束时间 /// [Description("结束时间")] [Nullable(true)] public string EndTime { get { return endTime; } set { endTime = 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; } } } }