| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- 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
- {
- /// <summary>
- /// 数据库表HTT_CONTROL_SHIFT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:朱少波 时间:2018-12-27
- /// </summary>
- public class HttControlShiftEntity
- {
- /// <summary>
- /// 产线代码
- /// </summary>
- private string plineCode = "";
- /// <summary>
- /// 产线描述
- /// </summary>
- private string plineName = "";
- /// <summary>
- /// 生产班次
- /// </summary>
- private string proBc = "";
- /// <summary>
- /// 上一班次
- /// </summary>
- private string lastBc = "";
- /// <summary>
- /// 班次上班时间
- /// </summary>
- private string shiftBeg = "";
- /// <summary>
- /// 班次下班时间
- /// </summary>
- private string shiftEnd = "";
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- [Nullable(false)]
- [DataLength(10)]
- public string PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 产线描述
- /// </summary>
- [Description("产线描述")]
- [Nullable(true)]
- [DataLength(40)]
- public string PlineName
- {
- get { return plineName; }
- set { plineName = value; }
- }
- /// <summary>
- /// 生产班次
- /// </summary>
- [Description("生产班次")]
- [Nullable(false)]
- [DataLength(1)]
- public string ProBc
- {
- get { return proBc; }
- set { proBc = value; }
- }
- /// <summary>
- /// 上一班次
- /// </summary>
- [Description("上一班次")]
- [Nullable(true)]
- [DataLength(1)]
- public string LastBc
- {
- get { return lastBc; }
- set { lastBc = value; }
- }
- /// <summary>
- /// 班次上班时间
- /// </summary>
- [Description("班次上班时间")]
- [Nullable(true)]
- [DataLength(4)]
- public string ShiftBeg
- {
- get { return shiftBeg; }
- set { shiftBeg = value; }
- }
- /// <summary>
- /// 班次下班时间
- /// </summary>
- [Description("班次下班时间")]
- [Nullable(true)]
- [DataLength(4)]
- public string ShiftEnd
- {
- get { return shiftEnd; }
- set { shiftEnd = value; }
- }
- }
- }
|