SlmBaseMaterialBPlEntity.cs 7.3 KB

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