using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Control.Entity { /// /// 数据库表HTT_CONTROL_SHIFT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:朱少波 时间:2018-12-27 /// public class HttControlShiftEntity { /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 生产班次 /// private string proBc = ""; /// /// 上一班次 /// private string lastBc = ""; /// /// 班次上班时间 /// private string shiftBeg = ""; /// /// 班次下班时间 /// private string shiftEnd = ""; /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [DataLength(10)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(40)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 生产班次 /// [Description("生产班次")] [Nullable(false)] [DataLength(1)] public string ProBc { get { return proBc; } set { proBc = value; } } /// /// 上一班次 /// [Description("上一班次")] [Nullable(true)] [DataLength(1)] public string LastBc { get { return lastBc; } set { lastBc = value; } } /// /// 班次上班时间 /// [Description("班次上班时间")] [Nullable(true)] [DataLength(4)] public string ShiftBeg { get { return shiftBeg; } set { shiftBeg = value; } } /// /// 班次下班时间 /// [Description("班次下班时间")] [Nullable(true)] [DataLength(4)] public string ShiftEnd { get { return shiftEnd; } set { shiftEnd = value; } } } }