SlmBaseMaterialIPlEntity.cs 6.9 KB

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