SlmBaseMaterialKPlEntity .cs 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  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.PlnSaleOrd.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表SLM_BASE_MATERIAL_K_PL所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:USER-20150714WV 时间:2016-03-22
  12. /// </summary>
  13. public class SlmBaseMaterialKPlEntity
  14. {
  15. private string disableFl;
  16. [Description("禁用标识")]
  17. public string DisableFl
  18. {
  19. get { return disableFl; }
  20. set { disableFl = value; }
  21. }
  22. /// <summary>
  23. /// 投入物料编码
  24. /// </summary>
  25. private string inMaterialNo = "";
  26. /// <summary>
  27. /// 投入物料描述
  28. /// </summary>
  29. private string inMaterialDesc = "";
  30. /// <summary>
  31. /// 产出物料编码
  32. /// </summary>
  33. private string outMaterialNo = "";
  34. /// <summary>
  35. /// 产出物料描述
  36. /// </summary>
  37. private string outMaterialDesc = "";
  38. /// <summary>
  39. /// 产线代码
  40. /// </summary>
  41. private string plineCode = "";
  42. /// <summary>
  43. /// 产线描述
  44. /// </summary>
  45. private string plineName = "";
  46. /// <summary>
  47. /// 小时能力(t/h)
  48. /// </summary>
  49. private string hrCapcty = "";
  50. /// <summary>
  51. /// 成材率(%)
  52. /// </summary>
  53. private string prdRate = "";
  54. /// <summary>
  55. /// 优先级
  56. /// </summary>
  57. private string plineLevel = "";
  58. /// <summary>
  59. /// 万只废品数
  60. /// </summary>
  61. private string wasteRate = "";
  62. /// <summary>
  63. /// 创建人
  64. /// </summary>
  65. private string createName = "";
  66. /// <summary>
  67. /// 创建时间
  68. /// </summary>
  69. private string createTime = "";
  70. /// <summary>
  71. /// 修改人
  72. /// </summary>
  73. private string updateName = "";
  74. /// <summary>
  75. /// 修改时间
  76. /// </summary>
  77. private string updateTime = "";
  78. /// <summary>
  79. /// 删除人
  80. /// </summary>
  81. private string deleteName = "";
  82. /// <summary>
  83. /// 删除时间
  84. /// </summary>
  85. private string deleteTime = "";
  86. /// <summary>
  87. /// 投入物料编码
  88. /// </summary>
  89. [Description("投入物料编码")]
  90. [Nullable(false)]
  91. [DataLength(30)]
  92. public string InMaterialNo
  93. {
  94. get { return inMaterialNo; }
  95. set { inMaterialNo = value; }
  96. }
  97. /// <summary>
  98. /// 投入物料描述
  99. /// </summary>
  100. [Description("投入物料描述")]
  101. [Nullable(true)]
  102. [DataLength(100)]
  103. public string InMaterialDesc
  104. {
  105. get { return inMaterialDesc; }
  106. set { inMaterialDesc = value; }
  107. }
  108. /// <summary>
  109. /// 产出物料编码
  110. /// </summary>
  111. [Description("产出物料编码")]
  112. [Nullable(false)]
  113. [DataLength(30)]
  114. public string OutMaterialNo
  115. {
  116. get { return outMaterialNo; }
  117. set { outMaterialNo = value; }
  118. }
  119. /// <summary>
  120. /// 产出物料描述
  121. /// </summary>
  122. [Description("产出物料描述")]
  123. [Nullable(true)]
  124. [DataLength(100)]
  125. public string OutMaterialDesc
  126. {
  127. get { return outMaterialDesc; }
  128. set { outMaterialDesc = value; }
  129. }
  130. /// <summary>
  131. /// 产线代码
  132. /// </summary>
  133. [Description("加工产线")]
  134. [Nullable(false)]
  135. [DataLength(20)]
  136. public string PlineCode
  137. {
  138. get { return plineCode; }
  139. set { plineCode = value; }
  140. }
  141. /// <summary>
  142. /// 产线描述
  143. /// </summary>
  144. [Description("加工产线")]
  145. [Nullable(false)]
  146. [DataLength(100)]
  147. public string PlineName
  148. {
  149. get { return plineName; }
  150. set { plineName = value; }
  151. }
  152. /// <summary>
  153. /// 小时能力(t/h)
  154. /// </summary>
  155. [Description("小时能力(支/h)")]
  156. [Nullable(true)]
  157. [DataLength(8)]
  158. public string HrCapcty
  159. {
  160. get { return hrCapcty; }
  161. set { hrCapcty = value; }
  162. }
  163. /// <summary>
  164. /// 成材率(%)
  165. /// </summary>
  166. [Description("成材率(%)")]
  167. [Nullable(true)]
  168. [DataLength(4)]
  169. public string PrdRate
  170. {
  171. get { return prdRate; }
  172. set { prdRate = value; }
  173. }
  174. /// <summary>
  175. /// 优先级
  176. /// </summary>
  177. [Description("优先级")]
  178. [Nullable(true)]
  179. [DataLength(22)]
  180. public string PlineLevel
  181. {
  182. get { return plineLevel; }
  183. set { plineLevel = value; }
  184. }
  185. /// <summary>
  186. /// 万只废品数
  187. /// </summary>
  188. [Description("万只废品数")]
  189. [Nullable(true)]
  190. [DataLength(22)]
  191. public string WasteRate
  192. {
  193. get { return wasteRate; }
  194. set { wasteRate = value; }
  195. }
  196. /// <summary>
  197. /// 创建人
  198. /// </summary>
  199. [Description("创建人")]
  200. [Nullable(true)]
  201. [DataLength(20)]
  202. public string CreateName
  203. {
  204. get { return createName; }
  205. set { createName = value; }
  206. }
  207. /// <summary>
  208. /// 创建时间
  209. /// </summary>
  210. [Description("创建时间")]
  211. [Nullable(true)]
  212. public string CreateTime
  213. {
  214. get { return createTime; }
  215. set { createTime = value; }
  216. }
  217. /// <summary>
  218. /// 修改人
  219. /// </summary>
  220. [Description("修改人")]
  221. [Nullable(true)]
  222. [DataLength(20)]
  223. public string UpdateName
  224. {
  225. get { return updateName; }
  226. set { updateName = value; }
  227. }
  228. /// <summary>
  229. /// 修改时间
  230. /// </summary>
  231. [Description("修改时间")]
  232. [Nullable(true)]
  233. public string UpdateTime
  234. {
  235. get { return updateTime; }
  236. set { updateTime = value; }
  237. }
  238. /// <summary>
  239. /// 删除人
  240. /// </summary>
  241. [Description("删除人")]
  242. [Nullable(true)]
  243. [DataLength(20)]
  244. public string DeleteName
  245. {
  246. get { return deleteName; }
  247. set { deleteName = value; }
  248. }
  249. /// <summary>
  250. /// 删除时间
  251. /// </summary>
  252. [Description("删除时间")]
  253. [Nullable(true)]
  254. public string DeleteTime
  255. {
  256. get { return deleteTime; }
  257. set { deleteTime = value; }
  258. }
  259. }
  260. }