PlnOrderRclSEntity.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  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 com.steering.pss.plnsaleord.processOrder.entity
  8. {
  9. /// <summary>
  10. /// 热处理工序排产
  11. /// </summary>
  12. public class PlnOrderRclSEntity
  13. {
  14. private string proPlanId;
  15. [Description("热处理订单编号")]
  16. public string ProPlanId
  17. {
  18. get { return proPlanId; }
  19. set { proPlanId = value; }
  20. }
  21. /// <summary>
  22. /// 钢级(牌号)代码
  23. /// </summary>
  24. private string steelcode = "";
  25. /// <summary>
  26. /// 钢级(牌号)名称
  27. /// </summary>
  28. private string steelname = "";
  29. /// <summary>
  30. /// 外径
  31. /// </summary>
  32. private decimal? outdiameter = null;
  33. /// <summary>
  34. /// 壁厚
  35. /// </summary>
  36. private decimal? wallthick = null;
  37. /// <summary>
  38. /// 目标壁厚
  39. /// </summary>
  40. private decimal? aimwallthick = null;
  41. /// <summary>
  42. /// 最大长度
  43. /// </summary>
  44. private decimal? lengthmax = null;
  45. /// <summary>
  46. /// 最小长度
  47. /// </summary>
  48. private decimal? lengthmin = null;
  49. /// <summary>
  50. /// 长度描述
  51. /// </summary>
  52. private string lengthdisc = "";
  53. /// <summary>
  54. /// 目标长度
  55. /// </summary>
  56. private decimal? aimlength = null;
  57. /// <summary>
  58. /// 扣型代码
  59. /// </summary>
  60. private string modelCode = "";
  61. /// <summary>
  62. /// 扣型描述
  63. /// </summary>
  64. private string modelDesc = "";
  65. /// <summary>
  66. /// 钢级代码
  67. /// </summary>
  68. [Description("钢级代码")]
  69. [Nullable(true)]
  70. [DataLength(10)]
  71. public string Steelcode
  72. {
  73. get { return steelcode; }
  74. set { steelcode = value; }
  75. }
  76. /// <summary>
  77. /// 钢级(牌号)名称
  78. /// </summary>
  79. [Description("钢级名称")]
  80. [Nullable(true)]
  81. [DataLength(100)]
  82. public string Steelname
  83. {
  84. get { return steelname; }
  85. set { steelname = value; }
  86. }
  87. /// <summary>
  88. /// 外径
  89. /// </summary>
  90. [Description("外径")]
  91. [Nullable(true)]
  92. [DataLength(10)]
  93. public decimal? Outdiameter
  94. {
  95. get { return outdiameter; }
  96. set { outdiameter = value; }
  97. }
  98. /// <summary>
  99. /// 壁厚
  100. /// </summary>
  101. [Description("壁厚")]
  102. [Nullable(true)]
  103. [DataLength(10)]
  104. public decimal? Wallthick
  105. {
  106. get { return wallthick; }
  107. set { wallthick = value; }
  108. }
  109. /// <summary>
  110. /// 目标壁厚
  111. /// </summary>
  112. [Description("目标壁厚")]
  113. [Nullable(true)]
  114. [DataLength(10)]
  115. public decimal? Aimwallthick
  116. {
  117. get { return aimwallthick; }
  118. set { aimwallthick = value; }
  119. }
  120. /// <summary>
  121. /// 最大长度
  122. /// </summary>
  123. [Description("最大长度")]
  124. [Nullable(true)]
  125. [DataLength(10)]
  126. public decimal? Lengthmax
  127. {
  128. get { return lengthmax; }
  129. set { lengthmax = value; }
  130. }
  131. /// <summary>
  132. /// 最小长度
  133. /// </summary>
  134. [Description("最小长度")]
  135. [Nullable(true)]
  136. [DataLength(10)]
  137. public decimal? Lengthmin
  138. {
  139. get { return lengthmin; }
  140. set { lengthmin = value; }
  141. }
  142. /// <summary>
  143. /// 目标长度
  144. /// </summary>
  145. [Description("目标长度")]
  146. [Nullable(true)]
  147. [DataLength(10)]
  148. public decimal? Aimlength
  149. {
  150. get { return aimlength; }
  151. set { aimlength = value; }
  152. }
  153. /// <summary>
  154. /// 扣型代码
  155. /// </summary>
  156. [Description("扣型代码")]
  157. [Nullable(true)]
  158. [DataLength(20)]
  159. public string ModelCode
  160. {
  161. get { return modelCode; }
  162. set { modelCode = value; }
  163. }
  164. /// <summary>
  165. /// 扣型描述
  166. /// </summary>
  167. [Description("扣型描述")]
  168. [Nullable(true)]
  169. [DataLength(100)]
  170. public string ModelDesc
  171. {
  172. get { return modelDesc; }
  173. set { modelDesc = value; }
  174. }
  175. private string repairType;
  176. [Description("检修类型")]
  177. public string RepairType
  178. {
  179. get { return repairType; }
  180. set { repairType = value; }
  181. }
  182. private Boolean isRepairPln;
  183. [Description("是否检修计划")]
  184. public Boolean IsRepairPln
  185. {
  186. get { return isRepairPln; }
  187. set { isRepairPln = value; }
  188. }
  189. private string producname;
  190. [Description("品名")]
  191. public string Producname
  192. {
  193. get { return producname; }
  194. set { producname = value; }
  195. }
  196. private string stdName;
  197. [Description("标准名称")]
  198. public string StdName
  199. {
  200. get { return stdName; }
  201. set { stdName = value; }
  202. }
  203. private string specName;
  204. [Description("产品规格")]
  205. public string SpecName
  206. {
  207. get { return specName; }
  208. set { specName = value; }
  209. }
  210. private string stdStyleDesc;
  211. [Description("标准类别")]
  212. public string StdStyleDesc
  213. {
  214. get { return stdStyleDesc; }
  215. set { stdStyleDesc = value; }
  216. }
  217. private string stationNames;
  218. [Description("监制工序点集合")]
  219. public string StationNames
  220. {
  221. get { return stationNames; }
  222. set { stationNames = value; }
  223. }
  224. private string stationCodes;
  225. [Description("监制工序点集合")]
  226. public string StationCodes
  227. {
  228. get { return stationCodes; }
  229. set { stationCodes = value; }
  230. }
  231. /// <summary>
  232. /// 热处理合同编号
  233. /// </summary>
  234. private string proOrderNo = "";
  235. /// <summary>
  236. /// 工序排产序号
  237. /// </summary>
  238. private string gxPlanNo = "";
  239. /// <summary>
  240. /// 排产联动组号
  241. /// </summary>
  242. private string planGroupId = "";
  243. /// <summary>
  244. /// 合同来源(销售合同、备料需求、补量需求)
  245. /// </summary>
  246. private string orderSource = "";
  247. /// <summary>
  248. /// 交货编码PK
  249. /// </summary>
  250. private string ordLnDlyPk = "";
  251. /// <summary>
  252. /// 排产流水号
  253. /// </summary>
  254. private string plnDivideId = "";
  255. /// <summary>
  256. /// 合同号
  257. /// </summary>
  258. private string orderNo = "";
  259. /// <summary>
  260. /// 合同行号
  261. /// </summary>
  262. private string orderSeq = "";
  263. /// <summary>
  264. /// 交货编码
  265. /// </summary>
  266. private string deliveryNo = "";
  267. /// <summary>
  268. /// 备料需求号
  269. /// </summary>
  270. private string reqBlId = "";
  271. /// <summary>
  272. /// 产线编码
  273. /// </summary>
  274. private string plineCode = "";
  275. /// <summary>
  276. /// 产线描述
  277. /// </summary>
  278. private string plineName = "";
  279. /// <summary>
  280. /// 投入物料编码
  281. /// </summary>
  282. private string inwlId = "";
  283. /// <summary>
  284. /// 产出物料编码
  285. /// </summary>
  286. private string outwlId = "";
  287. /// <summary>
  288. /// 排产重量
  289. /// </summary>
  290. private string weigthS = null;
  291. /// <summary>
  292. /// 排产支数
  293. /// </summary>
  294. private string numS = null;
  295. /// <summary>
  296. /// 工序内生产顺序号
  297. /// </summary>
  298. private string gxProSeq = "";
  299. /// <summary>
  300. /// 计划耗时(分)
  301. /// </summary>
  302. private string planUsetime = null;
  303. /// <summary>
  304. /// 计划开始时间
  305. /// </summary>
  306. private string planTimeB = "";
  307. /// <summary>
  308. /// 计划结束时间
  309. /// </summary>
  310. private string planTimeE = "";
  311. /// <summary>
  312. /// 执行状态
  313. /// </summary>
  314. private string exeStatus = "";
  315. /// <summary>
  316. /// 热处理合同编号
  317. /// </summary>
  318. [Description("热处理合同编号")]
  319. [Nullable(false)]
  320. [DataLength(20)]
  321. public string ProOrderNo
  322. {
  323. get { return proOrderNo; }
  324. set { proOrderNo = value; }
  325. }
  326. /// <summary>
  327. /// 工序排产序号
  328. /// </summary>
  329. [Description("工序排产序号")]
  330. [Nullable(false)]
  331. [DataLength(10)]
  332. public string GxPlanNo
  333. {
  334. get { return gxPlanNo; }
  335. set { gxPlanNo = value; }
  336. }
  337. /// <summary>
  338. /// 排产联动组号
  339. /// </summary>
  340. [Description("排产联动组号")]
  341. [Nullable(true)]
  342. [DataLength(40)]
  343. public string PlanGroupId
  344. {
  345. get { return planGroupId; }
  346. set { planGroupId = value; }
  347. }
  348. /// <summary>
  349. /// 合同来源(销售合同、备料需求、补量需求)
  350. /// </summary>
  351. [Description("合同来源")]
  352. [Nullable(true)]
  353. [DataLength(20)]
  354. public string OrderSource
  355. {
  356. get { return orderSource; }
  357. set { orderSource = value; }
  358. }
  359. /// <summary>
  360. /// 交货编码PK
  361. /// </summary>
  362. [Description("交货编码PK")]
  363. [Nullable(true)]
  364. [DataLength(40)]
  365. public string OrdLnDlyPk
  366. {
  367. get { return ordLnDlyPk; }
  368. set { ordLnDlyPk = value; }
  369. }
  370. /// <summary>
  371. /// 排产流水号
  372. /// </summary>
  373. [Description("排产流水号")]
  374. [Nullable(true)]
  375. [DataLength(10)]
  376. public string PlnDivideId
  377. {
  378. get { return plnDivideId; }
  379. set { plnDivideId = value; }
  380. }
  381. /// <summary>
  382. /// 合同号
  383. /// </summary>
  384. [Description("合同号")]
  385. [Nullable(true)]
  386. [DataLength(20)]
  387. public string OrderNo
  388. {
  389. get { return orderNo; }
  390. set { orderNo = value; }
  391. }
  392. /// <summary>
  393. /// 合同行号
  394. /// </summary>
  395. [Description("合同行号")]
  396. [Nullable(true)]
  397. [DataLength(3)]
  398. public string OrderSeq
  399. {
  400. get { return orderSeq; }
  401. set { orderSeq = value; }
  402. }
  403. /// <summary>
  404. /// 交货编码
  405. /// </summary>
  406. [Description("交货行号")]
  407. [Nullable(true)]
  408. [DataLength(3)]
  409. public string DeliveryNo
  410. {
  411. get { return deliveryNo; }
  412. set { deliveryNo = value; }
  413. }
  414. /// <summary>
  415. /// 备料需求号
  416. /// </summary>
  417. [Description("备料需求号")]
  418. [Nullable(true)]
  419. [DataLength(20)]
  420. public string ReqBlId
  421. {
  422. get { return reqBlId; }
  423. set { reqBlId = value; }
  424. }
  425. /// <summary>
  426. /// 产线编码
  427. /// </summary>
  428. [Description("热处理产线")]
  429. [Nullable(true)]
  430. [DataLength(20)]
  431. public string PlineCode
  432. {
  433. get { return plineCode; }
  434. set { plineCode = value; }
  435. }
  436. /// <summary>
  437. /// 产线描述
  438. /// </summary>
  439. [Description("产线描述")]
  440. [Nullable(true)]
  441. [DataLength(100)]
  442. public string PlineName
  443. {
  444. get { return plineName; }
  445. set { plineName = value; }
  446. }
  447. /// <summary>
  448. /// 投入物料编码
  449. /// </summary>
  450. [Description("投入物料编码")]
  451. [Nullable(true)]
  452. [DataLength(40)]
  453. public string InwlId
  454. {
  455. get { return inwlId; }
  456. set { inwlId = value; }
  457. }
  458. /// <summary>
  459. /// 产出物料编码
  460. /// </summary>
  461. [Description("产出物料编码")]
  462. [Nullable(true)]
  463. [DataLength(40)]
  464. public string OutwlId
  465. {
  466. get { return outwlId; }
  467. set { outwlId = value; }
  468. }
  469. /// <summary>
  470. /// 排产重量
  471. /// </summary>
  472. [Description("排产重量")]
  473. [Nullable(true)]
  474. [DataLength(10)]
  475. public string WeigthS
  476. {
  477. get { return weigthS; }
  478. set { weigthS = value; }
  479. }
  480. /// <summary>
  481. /// 排产支数
  482. /// </summary>
  483. [Description("排产支数")]
  484. [Nullable(true)]
  485. [DataLength(10)]
  486. public string NumS
  487. {
  488. get { return numS; }
  489. set { numS = value; }
  490. }
  491. /// <summary>
  492. /// 工序内生产顺序号
  493. /// </summary>
  494. [Description("工序内生产顺序号")]
  495. [Nullable(true)]
  496. [DataLength(20)]
  497. public string GxProSeq
  498. {
  499. get { return gxProSeq; }
  500. set { gxProSeq = value; }
  501. }
  502. /// <summary>
  503. /// 计划耗时(分)
  504. /// </summary>
  505. [Description("计划耗时(分)")]
  506. [Nullable(true)]
  507. [DataLength(10)]
  508. public string PlanUsetime
  509. {
  510. get { return planUsetime; }
  511. set { planUsetime = value; }
  512. }
  513. /// <summary>
  514. /// 计划开始时间
  515. /// </summary>
  516. [Description("计划开始时间")]
  517. [Nullable(true)]
  518. public string PlanTimeB
  519. {
  520. get { return planTimeB; }
  521. set { planTimeB = value; }
  522. }
  523. /// <summary>
  524. /// 计划结束时间
  525. /// </summary>
  526. [Description("计划结束时间")]
  527. [Nullable(true)]
  528. public string PlanTimeE
  529. {
  530. get { return planTimeE; }
  531. set { planTimeE = value; }
  532. }
  533. /// <summary>
  534. /// 执行状态
  535. /// </summary>
  536. [Description("执行状态")]
  537. [Nullable(true)]
  538. [DataLength(10)]
  539. public string ExeStatus
  540. {
  541. get { return exeStatus; }
  542. set { exeStatus = value; }
  543. }
  544. }
  545. }