PlnGxJgxMEntity.cs 27 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067
  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. public class PlnGxJgxMEntity
  10. {
  11. /// <summary>
  12. /// 加工线订单编号
  13. /// </summary>
  14. private string proPlanId = "";
  15. /// <summary>
  16. /// 主加工合同号
  17. /// </summary>
  18. private string proOrderNo = "";
  19. /// <summary>
  20. /// 主合同来源(销售合同、备料需求、补量需求)
  21. /// </summary>
  22. private string orderSource = "";
  23. /// <summary>
  24. /// 主交货编码PK
  25. /// </summary>
  26. private string ordLnDlyPk = "";
  27. /// <summary>
  28. /// 主排产流水号
  29. /// </summary>
  30. private string plnDivideId = "";
  31. /// <summary>
  32. /// 合同号
  33. /// </summary>
  34. private string orderNo = "";
  35. /// <summary>
  36. /// 合同行号
  37. /// </summary>
  38. private string orderSeq = "";
  39. /// <summary>
  40. /// 交货编码
  41. /// </summary>
  42. private string deliveryNo = "";
  43. /// <summary>
  44. /// 排产联动组号
  45. /// </summary>
  46. private string planGroupId = "";
  47. /// <summary>
  48. /// 主备料需求号
  49. /// </summary>
  50. private string reqBlId = "";
  51. /// <summary>
  52. /// 加工组
  53. /// </summary>
  54. private string groupJgx = "";
  55. /// <summary>
  56. /// 钢级(牌号)代码
  57. /// </summary>
  58. private string steelcode = "";
  59. /// <summary>
  60. /// 钢级(牌号)名称
  61. /// </summary>
  62. private string steelname = "";
  63. /// <summary>
  64. /// 外径
  65. /// </summary>
  66. private decimal? outdiameter = null;
  67. /// <summary>
  68. /// 壁厚
  69. /// </summary>
  70. private decimal? wallthick = null;
  71. /// <summary>
  72. /// 目标壁厚
  73. /// </summary>
  74. private decimal? aimwallthick = null;
  75. /// <summary>
  76. /// 最大长度
  77. /// </summary>
  78. private decimal? lengthmax = null;
  79. /// <summary>
  80. /// 最小长度
  81. /// </summary>
  82. private decimal? lengthmin = null;
  83. /// <summary>
  84. /// 长度描述
  85. /// </summary>
  86. private string lengthdisc = "";
  87. /// <summary>
  88. /// 目标长度
  89. /// </summary>
  90. private decimal? aimlength = null;
  91. /// <summary>
  92. /// 短尺率(%)
  93. /// </summary>
  94. private decimal? shrtLenRato = null;
  95. /// <summary>
  96. /// 短尺最短
  97. /// </summary>
  98. private decimal? shortest = null;
  99. /// <summary>
  100. /// 长尺率(%)
  101. /// </summary>
  102. private decimal? longLenRato = null;
  103. /// <summary>
  104. /// 长尺最长
  105. /// </summary>
  106. private decimal? longest = null;
  107. /// <summary>
  108. /// 短尺随炉
  109. /// </summary>
  110. private string shrtStove = "";
  111. /// <summary>
  112. /// 平均长度大于
  113. /// </summary>
  114. private decimal? avgLenMin = null;
  115. /// <summary>
  116. /// 最长最短差小于
  117. /// </summary>
  118. private decimal? difrncLenMax = null;
  119. /// <summary>
  120. /// 单倍尺长
  121. /// </summary>
  122. private decimal? siglLen = null;
  123. /// <summary>
  124. /// 成品长度公差(单倍尺长专用)
  125. /// </summary>
  126. private decimal? endlenSpecstd = null;
  127. /// <summary>
  128. /// 扣型代码
  129. /// </summary>
  130. private string modelCode = "";
  131. /// <summary>
  132. /// 扣型描述
  133. /// </summary>
  134. private string modelDesc = "";
  135. /// <summary>
  136. /// 成材率
  137. /// </summary>
  138. private decimal? getrate = null;
  139. /// <summary>
  140. /// 原料最大长度
  141. /// </summary>
  142. private decimal? lengthmaxIn = null;
  143. /// <summary>
  144. /// 原料最小长度
  145. /// </summary>
  146. private decimal? lengthminIn = null;
  147. /// <summary>
  148. /// 投入物料编码
  149. /// </summary>
  150. private string inwlId = "";
  151. /// <summary>
  152. /// 投入物料描述
  153. /// </summary>
  154. private string inwlDesc = "";
  155. /// <summary>
  156. /// 产出物料编码
  157. /// </summary>
  158. private string outwlId = "";
  159. /// <summary>
  160. /// 产出物料描述
  161. /// </summary>
  162. private string outwlDesc = "";
  163. /// <summary>
  164. /// 订单重量
  165. /// </summary>
  166. private decimal? planweight = null;
  167. /// <summary>
  168. /// 订单支数
  169. /// </summary>
  170. private decimal? plannum = null;
  171. /// <summary>
  172. /// 利库量
  173. /// </summary>
  174. private decimal? matchWeight = null;
  175. /// <summary>
  176. /// 利库支数
  177. /// </summary>
  178. private decimal? matchNum = null;
  179. /// <summary>
  180. /// 有无外购计划
  181. /// </summary>
  182. private bool ifbuyplan ;
  183. /// <summary>
  184. /// 外购计划号
  185. /// </summary>
  186. private string buyplanid = "";
  187. /// <summary>
  188. /// 外购计划量
  189. /// </summary>
  190. private decimal? buyplanweight = null;
  191. /// <summary>
  192. /// 待生产量(订单量-利库-外购)
  193. /// </summary>
  194. private decimal? reqProdWeight = null;
  195. /// <summary>
  196. /// 待投入物料重量
  197. /// </summary>
  198. private decimal? inWeight = null;
  199. /// <summary>
  200. /// 待投入支数
  201. /// </summary>
  202. private decimal? inNum = null;
  203. /// <summary>
  204. /// 计划生产时间
  205. /// </summary>
  206. private string planTime = "";
  207. /// <summary>
  208. /// 计划耗时(分)
  209. /// </summary>
  210. private decimal? planUsetime = null;
  211. /// <summary>
  212. /// 是否末端工序
  213. /// </summary>
  214. private bool isendgx ;
  215. /// <summary>
  216. /// 前一工序名
  217. /// </summary>
  218. private string previousGx = "";
  219. /// <summary>
  220. /// 前工序订单号
  221. /// </summary>
  222. private string prevGxplanId = "";
  223. /// <summary>
  224. /// 是否加工线监制
  225. /// </summary>
  226. private bool ifMonitorJgx ;
  227. /// <summary>
  228. /// 监制编号
  229. /// </summary>
  230. private string prdcrNo = "";
  231. /// <summary>
  232. /// 本工序监制点
  233. /// </summary>
  234. private string monitorPoint = "";
  235. /// <summary>
  236. /// 工艺文件号
  237. /// </summary>
  238. private string craftFileNo = "";
  239. /// <summary>
  240. /// 工艺文件责任人
  241. /// </summary>
  242. private string craftFileMan = "";
  243. /// <summary>
  244. /// 工艺序号
  245. /// </summary>
  246. private decimal? craftSeq = null;
  247. /// <summary>
  248. /// 生产年月
  249. /// </summary>
  250. private string proMonth = "";
  251. /// <summary>
  252. /// 计划状态
  253. /// </summary>
  254. private string planstatus = "";
  255. /// <summary>
  256. /// 生产完成重量
  257. /// </summary>
  258. private decimal? finishweight = null;
  259. /// <summary>
  260. /// 创建人
  261. /// </summary>
  262. private string createName = "";
  263. /// <summary>
  264. /// 创建时间
  265. /// </summary>
  266. private string createTime = "";
  267. /// <summary>
  268. /// 修改人
  269. /// </summary>
  270. private string updateName = "";
  271. /// <summary>
  272. /// 修改时间
  273. /// </summary>
  274. private string updateTime = "";
  275. /// <summary>
  276. /// 加工线订单编号
  277. /// </summary>
  278. [Description("加工线订单编号")]
  279. [Nullable(false)]
  280. [DataLength(20)]
  281. public string ProPlanId
  282. {
  283. get { return proPlanId; }
  284. set { proPlanId = value; }
  285. }
  286. /// <summary>
  287. /// 主加工合同号
  288. /// </summary>
  289. [Description("主加工合同号")]
  290. [Nullable(true)]
  291. [DataLength(20)]
  292. public string ProOrderNo
  293. {
  294. get { return proOrderNo; }
  295. set { proOrderNo = value; }
  296. }
  297. /// <summary>
  298. /// 主合同来源(销售合同、备料需求、补量需求)
  299. /// </summary>
  300. [Description("主合同来源")]
  301. [Nullable(true)]
  302. [DataLength(20)]
  303. public string OrderSource
  304. {
  305. get { return orderSource; }
  306. set { orderSource = value; }
  307. }
  308. /// <summary>
  309. /// 主交货编码PK
  310. /// </summary>
  311. [Description("主交货编码PK")]
  312. [Nullable(true)]
  313. [DataLength(40)]
  314. public string OrdLnDlyPk
  315. {
  316. get { return ordLnDlyPk; }
  317. set { ordLnDlyPk = value; }
  318. }
  319. /// <summary>
  320. /// 主排产流水号
  321. /// </summary>
  322. [Description("主排产流水号")]
  323. [Nullable(true)]
  324. [DataLength(10)]
  325. public string PlnDivideId
  326. {
  327. get { return plnDivideId; }
  328. set { plnDivideId = value; }
  329. }
  330. /// <summary>
  331. /// 合同号
  332. /// </summary>
  333. [Description("合同号")]
  334. [Nullable(true)]
  335. [DataLength(20)]
  336. public string OrderNo
  337. {
  338. get { return orderNo; }
  339. set { orderNo = value; }
  340. }
  341. /// <summary>
  342. /// 合同行号
  343. /// </summary>
  344. [Description("合同行号")]
  345. [Nullable(true)]
  346. [DataLength(3)]
  347. public string OrderSeq
  348. {
  349. get { return orderSeq; }
  350. set { orderSeq = value; }
  351. }
  352. /// <summary>
  353. /// 交货编码
  354. /// </summary>
  355. [Description("交货行号")]
  356. [Nullable(true)]
  357. [DataLength(3)]
  358. public string DeliveryNo
  359. {
  360. get { return deliveryNo; }
  361. set { deliveryNo = value; }
  362. }
  363. /// <summary>
  364. /// 排产联动组号
  365. /// </summary>
  366. [Description("排产联动组号")]
  367. [Nullable(true)]
  368. [DataLength(40)]
  369. public string PlanGroupId
  370. {
  371. get { return planGroupId; }
  372. set { planGroupId = value; }
  373. }
  374. /// <summary>
  375. /// 主备料需求号
  376. /// </summary>
  377. [Description("主备料需求号")]
  378. [Nullable(true)]
  379. [DataLength(20)]
  380. public string ReqBlId
  381. {
  382. get { return reqBlId; }
  383. set { reqBlId = value; }
  384. }
  385. /// <summary>
  386. /// 加工组
  387. /// </summary>
  388. [Description("加工组")]
  389. [Nullable(true)]
  390. [DataLength(20)]
  391. public string GroupJgx
  392. {
  393. get { return groupJgx; }
  394. set { groupJgx = value; }
  395. }
  396. /// <summary>
  397. /// 钢级(牌号)代码
  398. /// </summary>
  399. [Description("钢级(牌号)代码")]
  400. [Nullable(true)]
  401. [DataLength(10)]
  402. public string Steelcode
  403. {
  404. get { return steelcode; }
  405. set { steelcode = value; }
  406. }
  407. /// <summary>
  408. /// 钢级(牌号)名称
  409. /// </summary>
  410. [Description("钢级(牌号)名称")]
  411. [Nullable(true)]
  412. [DataLength(100)]
  413. public string Steelname
  414. {
  415. get { return steelname; }
  416. set { steelname = value; }
  417. }
  418. /// <summary>
  419. /// 外径
  420. /// </summary>
  421. [Description("外径")]
  422. [Nullable(true)]
  423. [DataLength(10)]
  424. public decimal? Outdiameter
  425. {
  426. get { return outdiameter; }
  427. set { outdiameter = value; }
  428. }
  429. /// <summary>
  430. /// 壁厚
  431. /// </summary>
  432. [Description("壁厚")]
  433. [Nullable(true)]
  434. [DataLength(10)]
  435. public decimal? Wallthick
  436. {
  437. get { return wallthick; }
  438. set { wallthick = value; }
  439. }
  440. /// <summary>
  441. /// 目标壁厚
  442. /// </summary>
  443. [Description("目标壁厚")]
  444. [Nullable(true)]
  445. [DataLength(10)]
  446. public decimal? Aimwallthick
  447. {
  448. get { return aimwallthick; }
  449. set { aimwallthick = value; }
  450. }
  451. /// <summary>
  452. /// 最大长度
  453. /// </summary>
  454. [Description("最大长度")]
  455. [Nullable(true)]
  456. [DataLength(10)]
  457. public decimal? Lengthmax
  458. {
  459. get { return lengthmax; }
  460. set { lengthmax = value; }
  461. }
  462. /// <summary>
  463. /// 最小长度
  464. /// </summary>
  465. [Description("最小长度")]
  466. [Nullable(true)]
  467. [DataLength(10)]
  468. public decimal? Lengthmin
  469. {
  470. get { return lengthmin; }
  471. set { lengthmin = value; }
  472. }
  473. /// <summary>
  474. /// 长度描述
  475. /// </summary>
  476. [Description("长度描述")]
  477. [Nullable(true)]
  478. [DataLength(100)]
  479. public string Lengthdisc
  480. {
  481. get { return lengthdisc; }
  482. set { lengthdisc = value; }
  483. }
  484. /// <summary>
  485. /// 目标长度
  486. /// </summary>
  487. [Description("目标长度")]
  488. [Nullable(true)]
  489. [DataLength(10)]
  490. public decimal? Aimlength
  491. {
  492. get { return aimlength; }
  493. set { aimlength = value; }
  494. }
  495. /// <summary>
  496. /// 短尺率(%)
  497. /// </summary>
  498. [Description("短尺率(%)")]
  499. [Nullable(true)]
  500. [DataLength(2)]
  501. public decimal? ShrtLenRato
  502. {
  503. get { return shrtLenRato; }
  504. set { shrtLenRato = value; }
  505. }
  506. /// <summary>
  507. /// 短尺最短
  508. /// </summary>
  509. [Description("短尺最短")]
  510. [Nullable(true)]
  511. [DataLength(5)]
  512. public decimal? Shortest
  513. {
  514. get { return shortest; }
  515. set { shortest = value; }
  516. }
  517. /// <summary>
  518. /// 长尺率(%)
  519. /// </summary>
  520. [Description("长尺率(%)")]
  521. [Nullable(true)]
  522. [DataLength(2)]
  523. public decimal? LongLenRato
  524. {
  525. get { return longLenRato; }
  526. set { longLenRato = value; }
  527. }
  528. /// <summary>
  529. /// 长尺最长
  530. /// </summary>
  531. [Description("长尺最长")]
  532. [Nullable(true)]
  533. [DataLength(5)]
  534. public decimal? Longest
  535. {
  536. get { return longest; }
  537. set { longest = value; }
  538. }
  539. /// <summary>
  540. /// 短尺随炉
  541. /// </summary>
  542. [Description("短尺随炉")]
  543. [Nullable(true)]
  544. [DataLength(20)]
  545. public string ShrtStove
  546. {
  547. get { return shrtStove; }
  548. set { shrtStove = value; }
  549. }
  550. /// <summary>
  551. /// 平均长度大于
  552. /// </summary>
  553. [Description("平均长度大于")]
  554. [Nullable(true)]
  555. [DataLength(5)]
  556. public decimal? AvgLenMin
  557. {
  558. get { return avgLenMin; }
  559. set { avgLenMin = value; }
  560. }
  561. /// <summary>
  562. /// 最长最短差小于
  563. /// </summary>
  564. [Description("最长最短差小于")]
  565. [Nullable(true)]
  566. [DataLength(5)]
  567. public decimal? DifrncLenMax
  568. {
  569. get { return difrncLenMax; }
  570. set { difrncLenMax = value; }
  571. }
  572. /// <summary>
  573. /// 单倍尺长
  574. /// </summary>
  575. [Description("单倍尺长")]
  576. [Nullable(true)]
  577. [DataLength(6)]
  578. public decimal? SiglLen
  579. {
  580. get { return siglLen; }
  581. set { siglLen = value; }
  582. }
  583. /// <summary>
  584. /// 成品长度公差(单倍尺长专用)
  585. /// </summary>
  586. [Description("成品长度公差")]
  587. [Nullable(true)]
  588. [DataLength(6)]
  589. public decimal? EndlenSpecstd
  590. {
  591. get { return endlenSpecstd; }
  592. set { endlenSpecstd = value; }
  593. }
  594. /// <summary>
  595. /// 扣型代码
  596. /// </summary>
  597. [Description("扣型代码")]
  598. [Nullable(true)]
  599. [DataLength(20)]
  600. public string ModelCode
  601. {
  602. get { return modelCode; }
  603. set { modelCode = value; }
  604. }
  605. /// <summary>
  606. /// 扣型描述
  607. /// </summary>
  608. [Description("扣型描述")]
  609. [Nullable(true)]
  610. [DataLength(100)]
  611. public string ModelDesc
  612. {
  613. get { return modelDesc; }
  614. set { modelDesc = value; }
  615. }
  616. /// <summary>
  617. /// 成材率
  618. /// </summary>
  619. [Description("成材率")]
  620. [Nullable(true)]
  621. [DataLength(10)]
  622. public decimal? Getrate
  623. {
  624. get { return getrate; }
  625. set { getrate = value; }
  626. }
  627. /// <summary>
  628. /// 原料最大长度
  629. /// </summary>
  630. [Description("原料最大长度")]
  631. [Nullable(true)]
  632. [DataLength(10)]
  633. public decimal? LengthmaxIn
  634. {
  635. get { return lengthmaxIn; }
  636. set { lengthmaxIn = value; }
  637. }
  638. /// <summary>
  639. /// 原料最小长度
  640. /// </summary>
  641. [Description("原料最小长度")]
  642. [Nullable(true)]
  643. [DataLength(10)]
  644. public decimal? LengthminIn
  645. {
  646. get { return lengthminIn; }
  647. set { lengthminIn = value; }
  648. }
  649. /// <summary>
  650. /// 投入物料编码
  651. /// </summary>
  652. [Description("投入物料编码")]
  653. [Nullable(true)]
  654. [DataLength(20)]
  655. public string InwlId
  656. {
  657. get { return inwlId; }
  658. set { inwlId = value; }
  659. }
  660. /// <summary>
  661. /// 投入物料描述
  662. /// </summary>
  663. [Description("投入物料描述")]
  664. [Nullable(true)]
  665. [DataLength(40)]
  666. public string InwlDesc
  667. {
  668. get { return inwlDesc; }
  669. set { inwlDesc = value; }
  670. }
  671. /// <summary>
  672. /// 产出物料编码
  673. /// </summary>
  674. [Description("产出物料编码")]
  675. [Nullable(true)]
  676. [DataLength(20)]
  677. public string OutwlId
  678. {
  679. get { return outwlId; }
  680. set { outwlId = value; }
  681. }
  682. /// <summary>
  683. /// 产出物料描述
  684. /// </summary>
  685. [Description("产出物料描述")]
  686. [Nullable(true)]
  687. [DataLength(40)]
  688. public string OutwlDesc
  689. {
  690. get { return outwlDesc; }
  691. set { outwlDesc = value; }
  692. }
  693. /// <summary>
  694. /// 订单重量
  695. /// </summary>
  696. [Description("订单重量")]
  697. [Nullable(true)]
  698. [DataLength(10)]
  699. public decimal? Planweight
  700. {
  701. get { return planweight; }
  702. set { planweight = value; }
  703. }
  704. /// <summary>
  705. /// 订单支数
  706. /// </summary>
  707. [Description("订单支数")]
  708. [Nullable(true)]
  709. [DataLength(10)]
  710. public decimal? Plannum
  711. {
  712. get { return plannum; }
  713. set { plannum = value; }
  714. }
  715. /// <summary>
  716. /// 利库量
  717. /// </summary>
  718. [Description("利库量")]
  719. [Nullable(true)]
  720. [DataLength(10)]
  721. public decimal? MatchWeight
  722. {
  723. get { return matchWeight; }
  724. set { matchWeight = value; }
  725. }
  726. /// <summary>
  727. /// 利库支数
  728. /// </summary>
  729. [Description("利库支数")]
  730. [Nullable(true)]
  731. [DataLength(10)]
  732. public decimal? MatchNum
  733. {
  734. get { return matchNum; }
  735. set { matchNum = value; }
  736. }
  737. /// <summary>
  738. /// 有无外购计划
  739. /// </summary>
  740. [Description("有无外购计划")]
  741. [Nullable(true)]
  742. [DataLength(1)]
  743. public bool Ifbuyplan
  744. {
  745. get { return ifbuyplan; }
  746. set { ifbuyplan = value; }
  747. }
  748. /// <summary>
  749. /// 外购计划号
  750. /// </summary>
  751. [Description("外购计划号")]
  752. [Nullable(true)]
  753. [DataLength(20)]
  754. public string Buyplanid
  755. {
  756. get { return buyplanid; }
  757. set { buyplanid = value; }
  758. }
  759. /// <summary>
  760. /// 外购计划量
  761. /// </summary>
  762. [Description("外购计划量")]
  763. [Nullable(true)]
  764. [DataLength(10)]
  765. public decimal? Buyplanweight
  766. {
  767. get { return buyplanweight; }
  768. set { buyplanweight = value; }
  769. }
  770. /// <summary>
  771. /// 待生产量(订单量-利库-外购)
  772. /// </summary>
  773. [Description("待生产量")]
  774. [Nullable(true)]
  775. [DataLength(10)]
  776. public decimal? ReqProdWeight
  777. {
  778. get { return reqProdWeight; }
  779. set { reqProdWeight = value; }
  780. }
  781. /// <summary>
  782. /// 待投入物料重量
  783. /// </summary>
  784. [Description("待投入物料重量")]
  785. [Nullable(true)]
  786. [DataLength(10)]
  787. public decimal? InWeight
  788. {
  789. get { return inWeight; }
  790. set { inWeight = value; }
  791. }
  792. /// <summary>
  793. /// 待投入支数
  794. /// </summary>
  795. [Description("待投入支数")]
  796. [Nullable(true)]
  797. [DataLength(10)]
  798. public decimal? InNum
  799. {
  800. get { return inNum; }
  801. set { inNum = value; }
  802. }
  803. /// <summary>
  804. /// 计划生产时间
  805. /// </summary>
  806. [Description("计划生产时间")]
  807. [Nullable(true)]
  808. public string PlanTime
  809. {
  810. get { return planTime; }
  811. set { planTime = value; }
  812. }
  813. /// <summary>
  814. /// 计划耗时(分)
  815. /// </summary>
  816. [Description("计划耗时(分)")]
  817. [Nullable(true)]
  818. [DataLength(10)]
  819. public decimal? PlanUsetime
  820. {
  821. get { return planUsetime; }
  822. set { planUsetime = value; }
  823. }
  824. /// <summary>
  825. /// 是否末端工序
  826. /// </summary>
  827. [Description("是否末端工序")]
  828. [Nullable(true)]
  829. [DataLength(1)]
  830. public bool Isendgx
  831. {
  832. get { return isendgx; }
  833. set { isendgx = value; }
  834. }
  835. /// <summary>
  836. /// 前一工序名
  837. /// </summary>
  838. [Description("前一工序名")]
  839. [Nullable(true)]
  840. [DataLength(40)]
  841. public string PreviousGx
  842. {
  843. get { return previousGx; }
  844. set { previousGx = value; }
  845. }
  846. /// <summary>
  847. /// 前工序订单号
  848. /// </summary>
  849. [Description("前工序订单号")]
  850. [Nullable(true)]
  851. [DataLength(20)]
  852. public string PrevGxplanId
  853. {
  854. get { return prevGxplanId; }
  855. set { prevGxplanId = value; }
  856. }
  857. /// <summary>
  858. /// 是否加工线监制
  859. /// </summary>
  860. [Description("是否加工线监制")]
  861. [Nullable(true)]
  862. [DataLength(1)]
  863. public bool IfMonitorJgx
  864. {
  865. get { return ifMonitorJgx; }
  866. set { ifMonitorJgx = value; }
  867. }
  868. /// <summary>
  869. /// 监制编号
  870. /// </summary>
  871. [Description("监制编号")]
  872. [Nullable(true)]
  873. [DataLength(40)]
  874. public string PrdcrNo
  875. {
  876. get { return prdcrNo; }
  877. set { prdcrNo = value; }
  878. }
  879. /// <summary>
  880. /// 本工序监制点
  881. /// </summary>
  882. [Description("本工序监制点")]
  883. [Nullable(true)]
  884. [DataLength(200)]
  885. public string MonitorPoint
  886. {
  887. get { return monitorPoint; }
  888. set { monitorPoint = value; }
  889. }
  890. /// <summary>
  891. /// 工艺文件号
  892. /// </summary>
  893. [Description("工艺文件号")]
  894. [Nullable(true)]
  895. [DataLength(400)]
  896. public string CraftFileNo
  897. {
  898. get { return craftFileNo; }
  899. set { craftFileNo = value; }
  900. }
  901. /// <summary>
  902. /// 工艺文件责任人
  903. /// </summary>
  904. [Description("工艺文件责任人")]
  905. [Nullable(true)]
  906. [DataLength(20)]
  907. public string CraftFileMan
  908. {
  909. get { return craftFileMan; }
  910. set { craftFileMan = value; }
  911. }
  912. /// <summary>
  913. /// 工艺序号
  914. /// </summary>
  915. [Description("工艺序号")]
  916. [Nullable(true)]
  917. [DataLength(5)]
  918. public decimal? CraftSeq
  919. {
  920. get { return craftSeq; }
  921. set { craftSeq = value; }
  922. }
  923. /// <summary>
  924. /// 生产年月
  925. /// </summary>
  926. [Description("生产年月")]
  927. [Nullable(true)]
  928. [DataLength(20)]
  929. public string ProMonth
  930. {
  931. get { return proMonth; }
  932. set { proMonth = value; }
  933. }
  934. /// <summary>
  935. /// 计划状态
  936. /// </summary>
  937. [Description("计划状态")]
  938. [Nullable(true)]
  939. [DataLength(20)]
  940. public string Planstatus
  941. {
  942. get { return planstatus; }
  943. set { planstatus = value; }
  944. }
  945. /// <summary>
  946. /// 生产完成重量
  947. /// </summary>
  948. [Description("生产完成重量")]
  949. [Nullable(true)]
  950. [DataLength(10)]
  951. public decimal? Finishweight
  952. {
  953. get { return finishweight; }
  954. set { finishweight = value; }
  955. }
  956. /// <summary>
  957. /// 创建人
  958. /// </summary>
  959. [Description("创建人")]
  960. [Nullable(true)]
  961. [DataLength(20)]
  962. public string CreateName
  963. {
  964. get { return createName; }
  965. set { createName = value; }
  966. }
  967. /// <summary>
  968. /// 创建时间
  969. /// </summary>
  970. [Description("创建时间")]
  971. [Nullable(true)]
  972. public string CreateTime
  973. {
  974. get { return createTime; }
  975. set { createTime = value; }
  976. }
  977. /// <summary>
  978. /// 修改人
  979. /// </summary>
  980. [Description("修改人")]
  981. [Nullable(true)]
  982. [DataLength(20)]
  983. public string UpdateName
  984. {
  985. get { return updateName; }
  986. set { updateName = value; }
  987. }
  988. /// <summary>
  989. /// 修改时间
  990. /// </summary>
  991. [Description("修改时间")]
  992. [Nullable(true)]
  993. public string UpdateTime
  994. {
  995. get { return updateTime; }
  996. set { updateTime = value; }
  997. }
  998. }
  999. }