MilBaseAddressEntity.cs 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace com.steering.mes.zgmil.entity
  7. {
  8. /// <summary>
  9. /// 数据库表MIL_BASE_ADDRESS所对应的实体类(生成工具:代码生成工具2.4)
  10. /// 作者:ZJAY-PC 时间:2015-10-31
  11. /// </summary>
  12. public class MilBaseAddressEntity
  13. {
  14. /// <summary>
  15. /// 操作台IP地址3
  16. /// </summary>
  17. private object ipAddress3;
  18. /// <summary>
  19. /// 操作台IP地址4
  20. /// </summary>
  21. private object ipAddress4;
  22. /// <summary>
  23. /// 操作台IP地址1
  24. /// </summary>
  25. private object ipAddress1;
  26. /// <summary>
  27. /// 操作台IP地址2
  28. /// </summary>
  29. private object ipAddress2;
  30. /// <summary>
  31. /// 工序号(GP-管排锯 JZ-矫直 TS-探伤)
  32. /// </summary>
  33. private object processNo;
  34. /// <summary>
  35. /// 操作台(1/2/3)
  36. /// </summary>
  37. private object operatCode;
  38. /// <summary>
  39. /// 操作台名称
  40. /// </summary>
  41. private object operatName;
  42. /// <summary>
  43. /// 厂线代码(250机组-C008、258机组-C009、168机组-C010、ASSEL机组-C012、460机组-C017)
  44. /// </summary>
  45. private object plineCode;
  46. /// <summary>
  47. /// 备注
  48. /// </summary>
  49. private object remark;
  50. public MilBaseAddressEntity()
  51. {
  52. ipAddress3 = "";
  53. ipAddress4 = "";
  54. ipAddress1 = "";
  55. ipAddress2 = "";
  56. processNo = "";
  57. operatCode = "";
  58. operatName = "";
  59. plineCode = "";
  60. remark = "";
  61. }
  62. public void Clear()
  63. {
  64. ipAddress3 = "";
  65. ipAddress4 = "";
  66. ipAddress1 = "";
  67. ipAddress2 = "";
  68. processNo = "";
  69. operatCode = "";
  70. operatName = "";
  71. plineCode = "";
  72. remark = "";
  73. }
  74. /// <summary>
  75. /// 操作台IP地址3
  76. /// </summary>
  77. [Description("操作台IP地址3")]
  78. public object IpAddress3
  79. {
  80. get { return ipAddress3; }
  81. set
  82. {
  83. if (value == null)
  84. {
  85. ipAddress3 = DBNull.Value;
  86. }
  87. else
  88. {
  89. ipAddress3 = value;
  90. }
  91. }
  92. }
  93. /// <summary>
  94. /// 操作台IP地址4
  95. /// </summary>
  96. [Description("操作台IP地址4")]
  97. public object IpAddress4
  98. {
  99. get { return ipAddress4; }
  100. set
  101. {
  102. if (value == null)
  103. {
  104. ipAddress4 = DBNull.Value;
  105. }
  106. else
  107. {
  108. ipAddress4 = value;
  109. }
  110. }
  111. }
  112. /// <summary>
  113. /// 操作台IP地址1
  114. /// </summary>
  115. [Description("操作台IP地址1")]
  116. public object IpAddress1
  117. {
  118. get { return ipAddress1; }
  119. set
  120. {
  121. if (value == null)
  122. {
  123. ipAddress1 = DBNull.Value;
  124. }
  125. else
  126. {
  127. ipAddress1 = value;
  128. }
  129. }
  130. }
  131. /// <summary>
  132. /// 操作台IP地址2
  133. /// </summary>
  134. [Description("操作台IP地址2")]
  135. public object IpAddress2
  136. {
  137. get { return ipAddress2; }
  138. set
  139. {
  140. if (value == null)
  141. {
  142. ipAddress2 = DBNull.Value;
  143. }
  144. else
  145. {
  146. ipAddress2 = value;
  147. }
  148. }
  149. }
  150. /// <summary>
  151. /// 工序号(GP-管排锯 JZ-矫直 TS-探伤)
  152. /// </summary>
  153. [Description("工序号(GP-管排锯 JZ-矫直 TS-探伤)")]
  154. public object ProcessNo
  155. {
  156. get { return processNo; }
  157. set
  158. {
  159. if (value == null)
  160. {
  161. processNo = DBNull.Value;
  162. }
  163. else
  164. {
  165. processNo = value;
  166. }
  167. }
  168. }
  169. /// <summary>
  170. /// 操作台(1/2/3)
  171. /// </summary>
  172. [Description("操作台(1/2/3)")]
  173. public object OperatCode
  174. {
  175. get { return operatCode; }
  176. set
  177. {
  178. if (value == null)
  179. {
  180. operatCode = DBNull.Value;
  181. }
  182. else
  183. {
  184. operatCode = value;
  185. }
  186. }
  187. }
  188. /// <summary>
  189. /// 操作台名称
  190. /// </summary>
  191. [Description("操作台名称")]
  192. public object OperatName
  193. {
  194. get { return operatName; }
  195. set
  196. {
  197. if (value == null)
  198. {
  199. operatName = DBNull.Value;
  200. }
  201. else
  202. {
  203. operatName = value;
  204. }
  205. }
  206. }
  207. /// <summary>
  208. /// 厂线代码(250机组-C008、258机组-C009、168机组-C010、ASSEL机组-C012、460机组-C017)
  209. /// </summary>
  210. [Description("厂线代码(250机组-C008、258机组-C009、168机组-C010、ASSEL机组-C012、460机组-C017)")]
  211. public object PlineCode
  212. {
  213. get { return plineCode; }
  214. set
  215. {
  216. if (value == null)
  217. {
  218. plineCode = DBNull.Value;
  219. }
  220. else
  221. {
  222. plineCode = value;
  223. }
  224. }
  225. }
  226. /// <summary>
  227. /// 备注
  228. /// </summary>
  229. [Description("备注")]
  230. public object Remark
  231. {
  232. get { return remark; }
  233. set
  234. {
  235. if (value == null)
  236. {
  237. remark = DBNull.Value;
  238. }
  239. else
  240. {
  241. remark = value;
  242. }
  243. }
  244. }
  245. }
  246. }