CraftOrdDesignMscPlPrcEntity.cs 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368
  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. /// 工序
  11. /// </summary>
  12. public class CraftOrdDesignMscPlPrcEntity
  13. {
  14. /// <summary>
  15. /// DESGIN_KEY
  16. /// </summary>
  17. private string desginKey = "";
  18. /// <summary>
  19. /// 全程产线号(COM_MSC_BACKLOG)
  20. /// </summary>
  21. private string mscPline = "";
  22. /// <summary>
  23. /// 全程途径码
  24. /// </summary>
  25. private string wholeBacklog = "";
  26. /// <summary>
  27. /// 全程途径描述
  28. /// </summary>
  29. private string wholeBacklogDesc = "";
  30. /// <summary>
  31. /// 全程工序顺序号(COM_MSC_PROCESS)
  32. /// </summary>
  33. private decimal? backlogSeq = null;
  34. /// <summary>
  35. /// 工序代码(COM_MSC_PROCESS)
  36. /// </summary>
  37. private string processCode = "";
  38. /// <summary>
  39. /// 工序名称(COM_MSC_PROCESS)
  40. /// </summary>
  41. private string processDesc = "";
  42. /// <summary>
  43. /// 同工序循环次数(COM_MSC_PROCESS)
  44. /// </summary>
  45. private decimal? processSeq = null;
  46. /// <summary>
  47. /// 二级工序代码(COM_MSC_PROCESS)
  48. /// </summary>
  49. private string processCodeC = "";
  50. /// <summary>
  51. /// 二级工序名称(COM_MSC_PROCESS)
  52. /// </summary>
  53. private string processDescC = "";
  54. /// <summary>
  55. /// 生产时间(小时/100吨)(自炼)
  56. /// </summary>
  57. private decimal? minuteProduct = null;
  58. /// <summary>
  59. /// 生产时间(小时/100吨)(外购)
  60. /// </summary>
  61. private decimal? minuteProductOut = null;
  62. /// <summary>
  63. /// 等待时间(小时/100吨)(自炼)
  64. /// </summary>
  65. private decimal? minuteWaite = null;
  66. /// <summary>
  67. /// 等待时间(小时/100吨)(外购)
  68. /// </summary>
  69. private decimal? minuteWaiteOut = null;
  70. /// <summary>
  71. /// 批量等待时间(小时/100吨)(自炼)
  72. /// </summary>
  73. private decimal? batchWaite = null;
  74. /// <summary>
  75. /// 批量等待时间(小时/100吨)(外购)
  76. /// </summary>
  77. private decimal? batchWaiteOut = null;
  78. /// <summary>
  79. /// 成分标准索引号(CICN000001)(COM_MSC_PROCESS)(集合,","分割)
  80. /// </summary>
  81. private string cic = "";
  82. /// <summary>
  83. /// 材质标准索引号(COM_MSC_PROCESS)
  84. /// </summary>
  85. private string pic = "";
  86. /// <summary>
  87. /// 公差标准索引号(COM_MSC_PROCESS)
  88. /// </summary>
  89. private string sic = "";
  90. /// <summary>
  91. /// 探伤索引号(COM_MSC_PROCESS)
  92. /// </summary>
  93. private string dic = "";
  94. /// <summary>
  95. /// 水压索引码(COM_MSC_PROCESS)
  96. /// </summary>
  97. private string wic = "";
  98. /// <summary>
  99. /// 加工索引号(COM_MSC_PROCESS)(集合,","分割)
  100. /// </summary>
  101. private string gic = "";
  102. /// <summary>
  103. /// DESGIN_KEY
  104. /// </summary>
  105. [Description("DESGIN_KEY")]
  106. [Nullable(false)]
  107. [DataLength(40)]
  108. public string DesginKey
  109. {
  110. get { return desginKey; }
  111. set { desginKey = value; }
  112. }
  113. /// <summary>
  114. /// 全程产线号(COM_MSC_BACKLOG)
  115. /// </summary>
  116. [Description("全程产线号")]
  117. [Nullable(false)]
  118. [DataLength(6)]
  119. public string MscPline
  120. {
  121. get { return mscPline; }
  122. set { mscPline = value; }
  123. }
  124. /// <summary>
  125. /// 全程途径码
  126. /// </summary>
  127. [Description("全程途径码")]
  128. [Nullable(false)]
  129. [DataLength(100)]
  130. public string WholeBacklog
  131. {
  132. get { return wholeBacklog; }
  133. set { wholeBacklog = value; }
  134. }
  135. /// <summary>
  136. /// 全程途径描述
  137. /// </summary>
  138. [Description("全程途径描述")]
  139. [Nullable(false)]
  140. [DataLength(500)]
  141. public string WholeBacklogDesc
  142. {
  143. get { return wholeBacklogDesc; }
  144. set { wholeBacklogDesc = value; }
  145. }
  146. /// <summary>
  147. /// 全程工序顺序号(COM_MSC_PROCESS)
  148. /// </summary>
  149. [Description("全程工序顺序号")]
  150. [Nullable(false)]
  151. [DataLength(22)]
  152. public decimal? BacklogSeq
  153. {
  154. get { return backlogSeq; }
  155. set { backlogSeq = value; }
  156. }
  157. /// <summary>
  158. /// 工序代码(COM_MSC_PROCESS)
  159. /// </summary>
  160. [Description("工序代码")]
  161. [Nullable(false)]
  162. [DataLength(8)]
  163. public string ProcessCode
  164. {
  165. get { return processCode; }
  166. set { processCode = value; }
  167. }
  168. /// <summary>
  169. /// 工序名称(COM_MSC_PROCESS)
  170. /// </summary>
  171. [Description("工序名称")]
  172. [Nullable(false)]
  173. [DataLength(50)]
  174. public string ProcessDesc
  175. {
  176. get { return processDesc; }
  177. set { processDesc = value; }
  178. }
  179. /// <summary>
  180. /// 同工序循环次数(COM_MSC_PROCESS)
  181. /// </summary>
  182. [Description("同工序循环次数")]
  183. [Nullable(true)]
  184. [DataLength(22)]
  185. public decimal? ProcessSeq
  186. {
  187. get { return processSeq; }
  188. set { processSeq = value; }
  189. }
  190. /// <summary>
  191. /// 二级工序代码(COM_MSC_PROCESS)
  192. /// </summary>
  193. [Description("二级工序代码")]
  194. [Nullable(true)]
  195. [DataLength(8)]
  196. public string ProcessCodeC
  197. {
  198. get { return processCodeC; }
  199. set { processCodeC = value; }
  200. }
  201. /// <summary>
  202. /// 二级工序名称(COM_MSC_PROCESS)
  203. /// </summary>
  204. [Description("二级工序")]
  205. [Nullable(true)]
  206. [DataLength(50)]
  207. public string ProcessDescC
  208. {
  209. get { return processDescC; }
  210. set { processDescC = value; }
  211. }
  212. /// <summary>
  213. /// 生产时间(小时/100吨)(自炼)
  214. /// </summary>
  215. [Description("生产时间")]
  216. [Nullable(true)]
  217. [DataLength(8)]
  218. public decimal? MinuteProduct
  219. {
  220. get { return minuteProduct; }
  221. set { minuteProduct = value; }
  222. }
  223. /// <summary>
  224. /// 生产时间(小时/100吨)(外购)
  225. /// </summary>
  226. [Description("生产时间")]
  227. [Nullable(true)]
  228. [DataLength(8)]
  229. public decimal? MinuteProductOut
  230. {
  231. get { return minuteProductOut; }
  232. set { minuteProductOut = value; }
  233. }
  234. /// <summary>
  235. /// 等待时间(小时/100吨)(自炼)
  236. /// </summary>
  237. [Description("等待时间")]
  238. [Nullable(true)]
  239. [DataLength(8)]
  240. public decimal? MinuteWaite
  241. {
  242. get { return minuteWaite; }
  243. set { minuteWaite = value; }
  244. }
  245. /// <summary>
  246. /// 等待时间(小时/100吨)(外购)
  247. /// </summary>
  248. [Description("等待时间")]
  249. [Nullable(true)]
  250. [DataLength(8)]
  251. public decimal? MinuteWaiteOut
  252. {
  253. get { return minuteWaiteOut; }
  254. set { minuteWaiteOut = value; }
  255. }
  256. /// <summary>
  257. /// 批量等待时间(小时/100吨)(自炼)
  258. /// </summary>
  259. [Description("批量等待")]
  260. [Nullable(true)]
  261. [DataLength(8)]
  262. public decimal? BatchWaite
  263. {
  264. get { return batchWaite; }
  265. set { batchWaite = value; }
  266. }
  267. /// <summary>
  268. /// 批量等待时间(小时/100吨)(外购)
  269. /// </summary>
  270. [Description("批量等待")]
  271. [Nullable(true)]
  272. [DataLength(8)]
  273. public decimal? BatchWaiteOut
  274. {
  275. get { return batchWaiteOut; }
  276. set { batchWaiteOut = value; }
  277. }
  278. /// <summary>
  279. /// 成分标准索引号(CICN000001)(COM_MSC_PROCESS)(集合,","分割)
  280. /// </summary>
  281. [Description("成分标准索引号")]
  282. [Nullable(true)]
  283. [DataLength(400)]
  284. public string Cic
  285. {
  286. get { return cic; }
  287. set { cic = value; }
  288. }
  289. /// <summary>
  290. /// 材质标准索引号(COM_MSC_PROCESS)
  291. /// </summary>
  292. [Description("材质标准索引号")]
  293. [Nullable(true)]
  294. [DataLength(400)]
  295. public string Pic
  296. {
  297. get { return pic; }
  298. set { pic = value; }
  299. }
  300. /// <summary>
  301. /// 公差标准索引号(COM_MSC_PROCESS)
  302. /// </summary>
  303. [Description("公差标准索引号")]
  304. [Nullable(true)]
  305. [DataLength(400)]
  306. public string Sic
  307. {
  308. get { return sic; }
  309. set { sic = value; }
  310. }
  311. /// <summary>
  312. /// 探伤索引号(COM_MSC_PROCESS)
  313. /// </summary>
  314. [Description("探伤索引号")]
  315. [Nullable(true)]
  316. [DataLength(400)]
  317. public string Dic
  318. {
  319. get { return dic; }
  320. set { dic = value; }
  321. }
  322. /// <summary>
  323. /// 水压索引码(COM_MSC_PROCESS)
  324. /// </summary>
  325. [Description("水压索引码")]
  326. [Nullable(true)]
  327. [DataLength(400)]
  328. public string Wic
  329. {
  330. get { return wic; }
  331. set { wic = value; }
  332. }
  333. /// <summary>
  334. /// 加工索引号(COM_MSC_PROCESS)(集合,","分割)
  335. /// </summary>
  336. [Description("加工索引号")]
  337. [Nullable(true)]
  338. [DataLength(400)]
  339. public string Gic
  340. {
  341. get { return gic; }
  342. set { gic = value; }
  343. }
  344. }
  345. }