MilSizingToolEntity.cs 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.mes.zgmil.entity
  7. {
  8. /// <summary>
  9. /// 数据库表MIL_SIZING_TOOL所对应的实体类(生成工具:代码生成工具2.4)
  10. /// 作者:PC201506012023 时间:2016-01-01
  11. /// </summary>
  12. public class MilSizingToolEntity
  13. {
  14. /// <summary>
  15. /// 操作人
  16. /// </summary>
  17. private object colUser;
  18. /// <summary>
  19. /// 创建时间
  20. /// </summary>
  21. private object creatTime;
  22. /// <summary>
  23. /// 产线代码
  24. /// </summary>
  25. private object plineCode;
  26. /// <summary>
  27. /// 实绩编号
  28. /// </summary>
  29. private object resultNo;
  30. /// <summary>
  31. /// 工具更换
  32. /// </summary>
  33. private object toolChange;
  34. /// <summary>
  35. /// 工具更换时间
  36. /// </summary>
  37. private object toolChangeTime;
  38. /// <summary>
  39. /// 操作班次
  40. /// </summary>
  41. private object colShift;
  42. /// <summary>
  43. /// 操作班组
  44. /// </summary>
  45. private object colGroup;
  46. public MilSizingToolEntity()
  47. {
  48. colUser = "";
  49. creatTime = "";
  50. plineCode = "";
  51. resultNo = "";
  52. toolChange = "";
  53. toolChangeTime = "";
  54. colShift = "";
  55. colGroup = "";
  56. }
  57. /// <summary>
  58. /// 操作人
  59. /// </summary>
  60. [Description("操作人")]
  61. public object ColUser
  62. {
  63. get { return colUser; }
  64. set
  65. {
  66. if (value == null)
  67. {
  68. colUser = DBNull.Value;
  69. }
  70. else
  71. {
  72. colUser = value;
  73. }
  74. }
  75. }
  76. /// <summary>
  77. /// 创建时间
  78. /// </summary>
  79. [Description("创建时间")]
  80. public object CreatTime
  81. {
  82. get { return creatTime; }
  83. set
  84. {
  85. if (value == null)
  86. {
  87. creatTime = DBNull.Value;
  88. }
  89. else
  90. {
  91. creatTime = value;
  92. }
  93. }
  94. }
  95. /// <summary>
  96. /// 产线代码
  97. /// </summary>
  98. [Description("产线代码")]
  99. public object PlineCode
  100. {
  101. get { return plineCode; }
  102. set
  103. {
  104. if (value == null)
  105. {
  106. plineCode = DBNull.Value;
  107. }
  108. else
  109. {
  110. plineCode = value;
  111. }
  112. }
  113. }
  114. /// <summary>
  115. /// 实绩编号
  116. /// </summary>
  117. [Description("实绩编号")]
  118. public object ResultNo
  119. {
  120. get { return resultNo; }
  121. set
  122. {
  123. if (value == null)
  124. {
  125. resultNo = DBNull.Value;
  126. }
  127. else
  128. {
  129. resultNo = value;
  130. }
  131. }
  132. }
  133. /// <summary>
  134. /// 工具更换
  135. /// </summary>
  136. [Description("工具更换")]
  137. public object ToolChange
  138. {
  139. get { return toolChange; }
  140. set
  141. {
  142. if (value == null)
  143. {
  144. toolChange = DBNull.Value;
  145. }
  146. else
  147. {
  148. toolChange = value;
  149. }
  150. }
  151. }
  152. /// <summary>
  153. /// 工具更换时间
  154. /// </summary>
  155. [Description("工具更换时间")]
  156. public object ToolChangeTime
  157. {
  158. get { return toolChangeTime; }
  159. set
  160. {
  161. if (value == null)
  162. {
  163. toolChangeTime = DBNull.Value;
  164. }
  165. else
  166. {
  167. toolChangeTime = value;
  168. }
  169. }
  170. }
  171. /// <summary>
  172. /// 操作班次
  173. /// </summary>
  174. [Description("操作班次")]
  175. public object ColShift
  176. {
  177. get { return colShift; }
  178. set
  179. {
  180. if (value == null)
  181. {
  182. colShift = DBNull.Value;
  183. }
  184. else
  185. {
  186. colShift = value;
  187. }
  188. }
  189. }
  190. /// <summary>
  191. /// 操作班组
  192. /// </summary>
  193. [Description("操作班组")]
  194. public object ColGroup
  195. {
  196. get { return colGroup; }
  197. set
  198. {
  199. if (value == null)
  200. {
  201. colGroup = DBNull.Value;
  202. }
  203. else
  204. {
  205. colGroup = value;
  206. }
  207. }
  208. }
  209. }
  210. }