HttControlShiftEntity.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.Mcp.Control.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表HTT_CONTROL_SHIFT所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:朱少波 时间:2018-12-27
  12. /// </summary>
  13. public class HttControlShiftEntity
  14. {
  15. /// <summary>
  16. /// 产线代码
  17. /// </summary>
  18. private string plineCode = "";
  19. /// <summary>
  20. /// 产线描述
  21. /// </summary>
  22. private string plineName = "";
  23. /// <summary>
  24. /// 生产班次
  25. /// </summary>
  26. private string proBc = "";
  27. /// <summary>
  28. /// 上一班次
  29. /// </summary>
  30. private string lastBc = "";
  31. /// <summary>
  32. /// 班次上班时间
  33. /// </summary>
  34. private string shiftBeg = "";
  35. /// <summary>
  36. /// 班次下班时间
  37. /// </summary>
  38. private string shiftEnd = "";
  39. /// <summary>
  40. /// 产线代码
  41. /// </summary>
  42. [Description("产线代码")]
  43. [Nullable(false)]
  44. [DataLength(10)]
  45. public string PlineCode
  46. {
  47. get { return plineCode; }
  48. set { plineCode = value; }
  49. }
  50. /// <summary>
  51. /// 产线描述
  52. /// </summary>
  53. [Description("产线描述")]
  54. [Nullable(true)]
  55. [DataLength(40)]
  56. public string PlineName
  57. {
  58. get { return plineName; }
  59. set { plineName = value; }
  60. }
  61. /// <summary>
  62. /// 生产班次
  63. /// </summary>
  64. [Description("生产班次")]
  65. [Nullable(false)]
  66. [DataLength(1)]
  67. public string ProBc
  68. {
  69. get { return proBc; }
  70. set { proBc = value; }
  71. }
  72. /// <summary>
  73. /// 上一班次
  74. /// </summary>
  75. [Description("上一班次")]
  76. [Nullable(true)]
  77. [DataLength(1)]
  78. public string LastBc
  79. {
  80. get { return lastBc; }
  81. set { lastBc = value; }
  82. }
  83. /// <summary>
  84. /// 班次上班时间
  85. /// </summary>
  86. [Description("班次上班时间")]
  87. [Nullable(true)]
  88. [DataLength(4)]
  89. public string ShiftBeg
  90. {
  91. get { return shiftBeg; }
  92. set { shiftBeg = value; }
  93. }
  94. /// <summary>
  95. /// 班次下班时间
  96. /// </summary>
  97. [Description("班次下班时间")]
  98. [Nullable(true)]
  99. [DataLength(4)]
  100. public string ShiftEnd
  101. {
  102. get { return shiftEnd; }
  103. set { shiftEnd = value; }
  104. }
  105. }
  106. }