PlnOrderZgSEntity.cs 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.YdmPipeManage.Entity
  8. {
  9. class PlnOrderZgSEntity
  10. {
  11. /// <summary>
  12. /// 主轧管合同编号
  13. /// </summary>
  14. private string proOrderNo = "";
  15. /// <summary>
  16. /// 轧管订单编号
  17. /// </summary>
  18. private string proPlanId = "";
  19. /// <summary>
  20. /// 工序排产序号
  21. /// </summary>
  22. private string gxPlanNo = "";
  23. /// <summary>
  24. /// 主排产联动组号
  25. /// </summary>
  26. private string planGroupId = "";
  27. /// <summary>
  28. /// 主合同来源(销售合同、备料需求、补量需求)
  29. /// </summary>
  30. private string orderSource = "";
  31. /// <summary>
  32. /// 合同PK
  33. /// </summary>
  34. private string ordPk = "";
  35. /// <summary>
  36. /// 合同行PK
  37. /// </summary>
  38. private string ordLnPk = "";
  39. /// <summary>
  40. /// 主交货编码PK
  41. /// </summary>
  42. private string ordLnDlyPk = "";
  43. /// <summary>
  44. /// 主排产流水号
  45. /// </summary>
  46. private string plnDivideId = "";
  47. /// <summary>
  48. /// 主合同号
  49. /// </summary>
  50. private string orderNo = "";
  51. /// <summary>
  52. /// 主合同行号
  53. /// </summary>
  54. private string orderSeq = "";
  55. /// <summary>
  56. /// 主交货编码
  57. /// </summary>
  58. private string deliveryNo = "";
  59. /// <summary>
  60. /// 主备料需求号
  61. /// </summary>
  62. private string reqBlId = "";
  63. /// <summary>
  64. /// 产线编码
  65. /// </summary>
  66. private string plineCode = "";
  67. /// <summary>
  68. /// 产线描述
  69. /// </summary>
  70. private string plineName = "";
  71. /// <summary>
  72. /// 钢级(牌号)代码
  73. /// </summary>
  74. private string steelcode = "";
  75. /// <summary>
  76. /// 钢级(牌号)名称
  77. /// </summary>
  78. private string steelname = "";
  79. /// <summary>
  80. /// 钢种代码
  81. /// </summary>
  82. private string gradecode = "";
  83. /// <summary>
  84. /// 钢种名称
  85. /// </summary>
  86. private string gradename = "";
  87. /// <summary>
  88. /// 成品外径
  89. /// </summary>
  90. private decimal? outdiameter = null;
  91. /// <summary>
  92. /// 成品壁厚
  93. /// </summary>
  94. private decimal? wallthick = null;
  95. /// <summary>
  96. /// 合同长度描述
  97. /// </summary>
  98. private string lengthdisc = "";
  99. /// <summary>
  100. /// 投入物料编码
  101. /// </summary>
  102. private string inwlId = "";
  103. /// <summary>
  104. /// 投入物料描述
  105. /// </summary>
  106. private string inwlDesc = "";
  107. /// <summary>
  108. /// 产出物料编码
  109. /// </summary>
  110. private string outwlId = "";
  111. /// <summary>
  112. /// 产出物料描述
  113. /// </summary>
  114. private string outwlDesc = "";
  115. /// <summary>
  116. /// 轧管转移长度上限(m)
  117. /// </summary>
  118. private decimal? lenRollMax = null;
  119. /// <summary>
  120. /// 轧管转移长度下限(m)
  121. /// </summary>
  122. private decimal? lenRollMin = null;
  123. /// <summary>
  124. /// 工序目标外径
  125. /// </summary>
  126. private decimal? aimoutdiameter = null;
  127. /// <summary>
  128. /// 工序目标壁厚
  129. /// </summary>
  130. private decimal? aimwallthick = null;
  131. /// <summary>
  132. /// 工序目标长度
  133. /// </summary>
  134. private decimal? aimlength = null;
  135. /// <summary>
  136. /// 管坯直径
  137. /// </summary>
  138. private decimal? diameterGp = null;
  139. /// <summary>
  140. /// 单倍坯长(mm)
  141. /// </summary>
  142. private decimal? lenGpSingle = null;
  143. /// <summary>
  144. /// 轧后长度
  145. /// </summary>
  146. private decimal? rollLength = null;
  147. /// <summary>
  148. /// 切头(mm)
  149. /// </summary>
  150. private decimal? lenCuthead = null;
  151. /// <summary>
  152. /// 切尾(mm)
  153. /// </summary>
  154. private decimal? lenCutend = null;
  155. /// <summary>
  156. /// 分切数
  157. /// </summary>
  158. private decimal? outnumCut = null;
  159. /// <summary>
  160. /// 芯棒直径(mm)
  161. /// </summary>
  162. private decimal? diameterMandrel = null;
  163. /// <summary>
  164. /// 孔型代码(4007)
  165. /// </summary>
  166. private string passCode = "";
  167. /// <summary>
  168. /// 孔型描述
  169. /// </summary>
  170. private string passName = "";
  171. /// <summary>
  172. /// 待投入重量
  173. /// </summary>
  174. private decimal? inWeightS = null;
  175. /// <summary>
  176. /// 待投入支数
  177. /// </summary>
  178. private decimal? inNumS = null;
  179. /// <summary>
  180. /// 排产重量
  181. /// </summary>
  182. private decimal? weigthS = null;
  183. /// <summary>
  184. /// 排产支数
  185. /// </summary>
  186. private decimal? numS = null;
  187. /// <summary>
  188. /// 加投重量
  189. /// </summary>
  190. private decimal? addWtIn = null;
  191. /// <summary>
  192. /// 加投支数
  193. /// </summary>
  194. private decimal? addNumIn = null;
  195. /// <summary>
  196. /// 投入利库量
  197. /// </summary>
  198. private decimal? matchWtIn = null;
  199. /// <summary>
  200. /// 投入利库支数
  201. /// </summary>
  202. private decimal? matchNumIn = null;
  203. /// <summary>
  204. /// 是否末工序(末工序时成品属性有效)
  205. /// </summary>
  206. private string isendgx = "";
  207. /// <summary>
  208. /// 是否轧管监制
  209. /// </summary>
  210. private string ifMonitorZg = "";
  211. /// <summary>
  212. /// 监制编号
  213. /// </summary>
  214. private string prdcrNo = "";
  215. /// <summary>
  216. /// 本工序监制点
  217. /// </summary>
  218. private string monitorPoint = "";
  219. /// <summary>
  220. /// 工艺文件号
  221. /// </summary>
  222. private string craftFileNo = "";
  223. /// <summary>
  224. /// 工艺文件责任人
  225. /// </summary>
  226. private string craftFileMan = "";
  227. /// <summary>
  228. /// 工艺序号
  229. /// </summary>
  230. private decimal? craftSeq = null;
  231. /// <summary>
  232. /// 本工序点路径
  233. /// </summary>
  234. private string stationRoad = "";
  235. /// <summary>
  236. /// 生产年月
  237. /// </summary>
  238. private string proMonth = "";
  239. /// <summary>
  240. /// 成分标准索引号集合(内控)
  241. /// </summary>
  242. private string cic = "";
  243. /// <summary>
  244. /// 材质标准索引号集合(内控)
  245. /// </summary>
  246. private string pic = "";
  247. /// <summary>
  248. /// 公差标准索引号集合(内控)
  249. /// </summary>
  250. private string sic = "";
  251. /// <summary>
  252. /// 探伤索引号集合(内控)
  253. /// </summary>
  254. private string dic = "";
  255. /// <summary>
  256. /// 水压索引码集合(内控)
  257. /// </summary>
  258. private string wic = "";
  259. /// <summary>
  260. /// 加工标准索引号集合(,)(内控)
  261. /// </summary>
  262. private string gic = "";
  263. /// <summary>
  264. /// 产线内生产顺序号
  265. /// </summary>
  266. private string gxProSeq = "";
  267. /// <summary>
  268. /// 计划耗时(分)
  269. /// </summary>
  270. private decimal? planUsetime = null;
  271. /// <summary>
  272. /// 计划开始时间
  273. /// </summary>
  274. private string planTimeB = "";
  275. /// <summary>
  276. /// 计划结束时间
  277. /// </summary>
  278. private string planTimeE = "";
  279. /// <summary>
  280. /// 炉计划已排重量
  281. /// </summary>
  282. private decimal? batchedWt = null;
  283. /// <summary>
  284. /// 炉计划已排支数
  285. /// </summary>
  286. private decimal? batchedNum = null;
  287. /// <summary>
  288. /// 生产完成重量
  289. /// </summary>
  290. private decimal? finishweight = null;
  291. /// <summary>
  292. /// 生产完成支数
  293. /// </summary>
  294. private decimal? finishnum = null;
  295. /// <summary>
  296. /// 执行状态(0计划,1生产中,2完成,3关闭A)
  297. /// </summary>
  298. private string exeStatus = "";
  299. /// <summary>
  300. /// 是否检修计划
  301. /// </summary>
  302. private string isRepairPln = "";
  303. /// <summary>
  304. /// 检修类型
  305. /// </summary>
  306. private string repairType = "";
  307. /// <summary>
  308. /// 是否确认
  309. /// </summary>
  310. private string isPlanOk = "";
  311. /// <summary>
  312. /// 管坯需求确认否
  313. /// </summary>
  314. private string gpreqIfOk = "";
  315. /// <summary>
  316. /// 管坯需求编号
  317. /// </summary>
  318. private string gpreqId = "";
  319. /// <summary>
  320. /// 轧批号
  321. /// </summary>
  322. private string zyBatchId = "";
  323. /// <summary>
  324. /// 管坯成分标准索引号集合(内控)
  325. /// </summary>
  326. private string cicGroupGp = "";
  327. /// <summary>
  328. /// 管坯材质标准索引号集合(内控)
  329. /// </summary>
  330. private string picGroupGp = "";
  331. /// <summary>
  332. /// 管坯公差标准索引号集合(内控)
  333. /// </summary>
  334. private string sicGroupGp = "";
  335. /// <summary>
  336. /// 管坯探伤索引号集合(内控)
  337. /// </summary>
  338. private string dicGroupGp = "";
  339. /// <summary>
  340. /// 管坯水压索引码集合(内控)
  341. /// </summary>
  342. private string wicGroupGp = "";
  343. /// <summary>
  344. /// 管坯加工标准索引号集合(内控)
  345. /// </summary>
  346. private string gicGroupGp = "";
  347. /// <summary>
  348. /// 默认管坯成分标准索引号(内控)
  349. /// </summary>
  350. private string cicGp = "";
  351. /// <summary>
  352. /// 默认管坯材质标准索引号(内控)
  353. /// </summary>
  354. private string picGp = "";
  355. /// <summary>
  356. /// 默认管坯公差标准索引号(内控)
  357. /// </summary>
  358. private string sicGp = "";
  359. /// <summary>
  360. /// 默认管坯探伤索引号(内控)
  361. /// </summary>
  362. private string dicGp = "";
  363. /// <summary>
  364. /// 默认管坯水压索引码(内控)
  365. /// </summary>
  366. private string wicGp = "";
  367. /// <summary>
  368. /// 默认管坯加工标准索引号(内控)
  369. /// </summary>
  370. private string gicGp = "";
  371. /// <summary>
  372. /// 国内外
  373. /// </summary>
  374. private string ifExport = "";
  375. /// <summary>
  376. /// 创建时间
  377. /// </summary>
  378. private string createTime = "";
  379. /// <summary>
  380. /// 备注
  381. /// </summary>
  382. private string memo = "";
  383. /// <summary>
  384. /// 确认时间
  385. /// </summary>
  386. private string issuedTime = "";
  387. /// <summary>
  388. /// 确认人
  389. /// </summary>
  390. private string issuedMan = "";
  391. /// <summary>
  392. /// 最近取消确认时间
  393. /// </summary>
  394. private string lastUndownTime = "";
  395. /// <summary>
  396. /// 最近取消确认人
  397. /// </summary>
  398. private string lastUndownMan = "";
  399. /// <summary>
  400. /// 合同下发版次(年月日+3位流水)
  401. /// </summary>
  402. private string versionNo = "";
  403. /// <summary>
  404. /// 加工成本
  405. /// </summary>
  406. private decimal? processingCost = null;
  407. /// <summary>
  408. /// 完全成本
  409. /// </summary>
  410. private decimal? totalCost = null;
  411. /// <summary>
  412. /// 炉计划是否下发
  413. /// </summary>
  414. private string ifStoveIssued = "";
  415. /// <summary>
  416. /// 炉计划下发时间
  417. /// </summary>
  418. private string stoveIssuedTime = "";
  419. /// <summary>
  420. /// 炉计划下发人
  421. /// </summary>
  422. private string stoveIssuedMan = "";
  423. /// <summary>
  424. /// 是否上料行
  425. /// </summary>
  426. private string isOnloadLine = "";
  427. /// <summary>
  428. /// 品名代码
  429. /// </summary>
  430. private string produccode = "";
  431. /// <summary>
  432. /// 品名描述
  433. /// </summary>
  434. private string producname = "";
  435. /// <summary>
  436. /// 标准代码
  437. /// </summary>
  438. private string stdCode = "";
  439. /// <summary>
  440. /// 标准名称
  441. /// </summary>
  442. private string stdName = "";
  443. /// <summary>
  444. /// 标准类别代码
  445. /// </summary>
  446. private string stdStyle = "";
  447. /// <summary>
  448. /// 标准类别描述
  449. /// </summary>
  450. private string stdStyleDesc = "";
  451. /// <summary>
  452. /// 产品规格代码
  453. /// </summary>
  454. private string specCode = "";
  455. /// <summary>
  456. /// 产品规格描述
  457. /// </summary>
  458. private string specName = "";
  459. /// <summary>
  460. /// 扣型代码
  461. /// </summary>
  462. private string modelCode = "";
  463. /// <summary>
  464. /// 扣型描述
  465. /// </summary>
  466. private string modelDesc = "";
  467. private string wholeBacklogDesc = "";
  468. private string decision = "";
  469. /// <summary>
  470. /// 判定字头
  471. /// </summary>
  472. [Description("判定字头")]
  473. [Nullable(false)]
  474. [DataLength(10)]
  475. public string Decision
  476. {
  477. get { return decision; }
  478. set { decision = value; }
  479. }
  480. /// <summary>
  481. /// 品名代码
  482. /// </summary>
  483. [Description("主制程")]
  484. [Nullable(false)]
  485. [DataLength(200)]
  486. public string WholeBacklogDesc
  487. {
  488. get { return wholeBacklogDesc; }
  489. set { wholeBacklogDesc = value; }
  490. }
  491. /// <summary>
  492. /// 品名代码
  493. /// </summary>
  494. [Description("品名代码")]
  495. [Nullable(false)]
  496. [DataLength(20)]
  497. public string Produccode
  498. {
  499. get { return produccode; }
  500. set { produccode = value; }
  501. }
  502. /// <summary>
  503. /// 品名描述
  504. /// </summary>
  505. [Description("品名描述")]
  506. [Nullable(false)]
  507. [DataLength(100)]
  508. public string Producname
  509. {
  510. get { return producname; }
  511. set { producname = value; }
  512. }
  513. /// <summary>
  514. /// 标准代码
  515. /// </summary>
  516. [Description("标准代码")]
  517. [Nullable(false)]
  518. [DataLength(20)]
  519. public string StdCode
  520. {
  521. get { return stdCode; }
  522. set { stdCode = value; }
  523. }
  524. /// <summary>
  525. /// 标准名称
  526. /// </summary>
  527. [Description("标准名称")]
  528. [Nullable(false)]
  529. [DataLength(200)]
  530. public string StdName
  531. {
  532. get { return stdName; }
  533. set { stdName = value; }
  534. }
  535. /// <summary>
  536. /// 钢级(牌号)代码
  537. /// </summary>
  538. [Description("钢级(牌号)代码")]
  539. [Nullable(false)]
  540. [DataLength(10)]
  541. public string Steelcode
  542. {
  543. get { return steelcode; }
  544. set { steelcode = value; }
  545. }
  546. /// <summary>
  547. /// 钢级(牌号)名称
  548. /// </summary>
  549. [Description("钢级(牌号)名称")]
  550. [Nullable(false)]
  551. [DataLength(100)]
  552. public string Steelname
  553. {
  554. get { return steelname; }
  555. set { steelname = value; }
  556. }
  557. /// <summary>
  558. /// 标准类别代码
  559. /// </summary>
  560. [Description("标准类别代码")]
  561. [Nullable(true)]
  562. [DataLength(20)]
  563. public string StdStyle
  564. {
  565. get { return stdStyle; }
  566. set { stdStyle = value; }
  567. }
  568. /// <summary>
  569. /// 标准类别描述
  570. /// </summary>
  571. [Description("标准类别描述")]
  572. [Nullable(true)]
  573. [DataLength(50)]
  574. public string StdStyleDesc
  575. {
  576. get { return stdStyleDesc; }
  577. set { stdStyleDesc = value; }
  578. }
  579. /// <summary>
  580. /// 产品规格代码
  581. /// </summary>
  582. [Description("产品规格代码")]
  583. [Nullable(false)]
  584. [DataLength(20)]
  585. public string SpecCode
  586. {
  587. get { return specCode; }
  588. set { specCode = value; }
  589. }
  590. /// <summary>
  591. /// 产品规格描述
  592. /// </summary>
  593. [Description("产品规格描述")]
  594. [Nullable(false)]
  595. [DataLength(100)]
  596. public string SpecName
  597. {
  598. get { return specName; }
  599. set { specName = value; }
  600. }
  601. /// <summary>
  602. /// 扣型代码
  603. /// </summary>
  604. [Description("扣型代码")]
  605. [Nullable(true)]
  606. [DataLength(20)]
  607. public string ModelCode
  608. {
  609. get { return modelCode; }
  610. set { modelCode = value; }
  611. }
  612. /// <summary>
  613. /// 扣型描述
  614. /// </summary>
  615. [Description("扣型描述")]
  616. [Nullable(true)]
  617. [DataLength(100)]
  618. public string ModelDesc
  619. {
  620. get { return modelDesc; }
  621. set { modelDesc = value; }
  622. }
  623. /// <summary>
  624. /// 主轧管合同编号
  625. /// </summary>
  626. [Description("主轧管合同编号")]
  627. [Nullable(true)]
  628. [DataLength(20)]
  629. public string ProOrderNo
  630. {
  631. get { return proOrderNo; }
  632. set { proOrderNo = value; }
  633. }
  634. /// <summary>
  635. /// 轧管订单编号
  636. /// </summary>
  637. [Description("轧管订单编号")]
  638. [Nullable(false)]
  639. [DataLength(20)]
  640. public string ProPlanId
  641. {
  642. get { return proPlanId; }
  643. set { proPlanId = value; }
  644. }
  645. /// <summary>
  646. /// 工序排产序号
  647. /// </summary>
  648. [Description("工序排产序号")]
  649. [Nullable(false)]
  650. [DataLength(10)]
  651. public string GxPlanNo
  652. {
  653. get { return gxPlanNo; }
  654. set { gxPlanNo = value; }
  655. }
  656. /// <summary>
  657. /// 主排产联动组号
  658. /// </summary>
  659. [Description("主排产联动组号")]
  660. [Nullable(true)]
  661. [DataLength(40)]
  662. public string PlanGroupId
  663. {
  664. get { return planGroupId; }
  665. set { planGroupId = value; }
  666. }
  667. /// <summary>
  668. /// 主合同来源(销售合同、备料需求、补量需求)
  669. /// </summary>
  670. [Description("主合同来源")]
  671. [Nullable(true)]
  672. [DataLength(20)]
  673. public string OrderSource
  674. {
  675. get { return orderSource; }
  676. set { orderSource = value; }
  677. }
  678. /// <summary>
  679. /// 合同PK
  680. /// </summary>
  681. [Description("合同PK")]
  682. [Nullable(true)]
  683. [DataLength(40)]
  684. public string OrdPk
  685. {
  686. get { return ordPk; }
  687. set { ordPk = value; }
  688. }
  689. /// <summary>
  690. /// 合同行PK
  691. /// </summary>
  692. [Description("合同行PK")]
  693. [Nullable(true)]
  694. [DataLength(40)]
  695. public string OrdLnPk
  696. {
  697. get { return ordLnPk; }
  698. set { ordLnPk = value; }
  699. }
  700. /// <summary>
  701. /// 主交货编码PK
  702. /// </summary>
  703. [Description("主交货编码PK")]
  704. [Nullable(true)]
  705. [DataLength(40)]
  706. public string OrdLnDlyPk
  707. {
  708. get { return ordLnDlyPk; }
  709. set { ordLnDlyPk = value; }
  710. }
  711. /// <summary>
  712. /// 主排产流水号
  713. /// </summary>
  714. [Description("主排产流水号")]
  715. [Nullable(true)]
  716. [DataLength(10)]
  717. public string PlnDivideId
  718. {
  719. get { return plnDivideId; }
  720. set { plnDivideId = value; }
  721. }
  722. /// <summary>
  723. /// 主合同号
  724. /// </summary>
  725. [Description("主合同号")]
  726. [Nullable(true)]
  727. [DataLength(20)]
  728. public string OrderNo
  729. {
  730. get { return orderNo; }
  731. set { orderNo = value; }
  732. }
  733. /// <summary>
  734. /// 主合同行号
  735. /// </summary>
  736. [Description("合同行号")]
  737. [Nullable(true)]
  738. [DataLength(3)]
  739. public string OrderSeq
  740. {
  741. get { return orderSeq; }
  742. set { orderSeq = value; }
  743. }
  744. /// <summary>
  745. /// 主交货编码
  746. /// </summary>
  747. [Description("交货行号")]
  748. [Nullable(true)]
  749. [DataLength(3)]
  750. public string DeliveryNo
  751. {
  752. get { return deliveryNo; }
  753. set { deliveryNo = value; }
  754. }
  755. /// <summary>
  756. /// 主备料需求号
  757. /// </summary>
  758. [Description("主备料需求号")]
  759. [Nullable(true)]
  760. [DataLength(20)]
  761. public string ReqBlId
  762. {
  763. get { return reqBlId; }
  764. set { reqBlId = value; }
  765. }
  766. /// <summary>
  767. /// 产线编码
  768. /// </summary>
  769. [Description("产线编码")]
  770. [Nullable(true)]
  771. [DataLength(20)]
  772. public string PlineCode
  773. {
  774. get { return plineCode; }
  775. set { plineCode = value; }
  776. }
  777. /// <summary>
  778. /// 产线描述
  779. /// </summary>
  780. [Description("产线")]
  781. [Nullable(true)]
  782. [DataLength(100)]
  783. public string PlineName
  784. {
  785. get { return plineName; }
  786. set { plineName = value; }
  787. }
  788. /// <summary>
  789. /// 钢种代码
  790. /// </summary>
  791. [Description("钢种代码")]
  792. [Nullable(true)]
  793. [DataLength(10)]
  794. public string Gradecode
  795. {
  796. get { return gradecode; }
  797. set { gradecode = value; }
  798. }
  799. /// <summary>
  800. /// 钢种名称
  801. /// </summary>
  802. [Description("钢种")]
  803. [Nullable(true)]
  804. [DataLength(100)]
  805. public string Gradename
  806. {
  807. get { return gradename; }
  808. set { gradename = value; }
  809. }
  810. /// <summary>
  811. /// 成品外径
  812. /// </summary>
  813. [Description("成品外径")]
  814. [Nullable(true)]
  815. [DataLength(10)]
  816. public decimal? Outdiameter
  817. {
  818. get { return outdiameter; }
  819. set { outdiameter = value; }
  820. }
  821. /// <summary>
  822. /// 成品壁厚
  823. /// </summary>
  824. [Description("成品壁厚")]
  825. [Nullable(true)]
  826. [DataLength(10)]
  827. public decimal? Wallthick
  828. {
  829. get { return wallthick; }
  830. set { wallthick = value; }
  831. }
  832. /// <summary>
  833. /// 合同长度描述
  834. /// </summary>
  835. [Description("合同长度描述")]
  836. [Nullable(true)]
  837. [DataLength(100)]
  838. public string Lengthdisc
  839. {
  840. get { return lengthdisc; }
  841. set { lengthdisc = value; }
  842. }
  843. /// <summary>
  844. /// 投入物料编码
  845. /// </summary>
  846. [Description("投入物料编码")]
  847. [Nullable(true)]
  848. [DataLength(40)]
  849. public string InwlId
  850. {
  851. get { return inwlId; }
  852. set { inwlId = value; }
  853. }
  854. /// <summary>
  855. /// 投入物料描述
  856. /// </summary>
  857. [Description("投入物料描述")]
  858. [Nullable(true)]
  859. [DataLength(100)]
  860. public string InwlDesc
  861. {
  862. get { return inwlDesc; }
  863. set { inwlDesc = value; }
  864. }
  865. /// <summary>
  866. /// 产出物料编码
  867. /// </summary>
  868. [Description("产出物料编码")]
  869. [Nullable(true)]
  870. [DataLength(40)]
  871. public string OutwlId
  872. {
  873. get { return outwlId; }
  874. set { outwlId = value; }
  875. }
  876. /// <summary>
  877. /// 产出物料描述
  878. /// </summary>
  879. [Description("物料描述")]
  880. [Nullable(true)]
  881. [DataLength(100)]
  882. public string OutwlDesc
  883. {
  884. get { return outwlDesc; }
  885. set { outwlDesc = value; }
  886. }
  887. /// <summary>
  888. /// 轧管转移长度上限(m)
  889. /// </summary>
  890. [Description("轧管转移长度上限(m)")]
  891. [Nullable(true)]
  892. [DataLength(16)]
  893. public decimal? LenRollMax
  894. {
  895. get { return lenRollMax; }
  896. set { lenRollMax = value; }
  897. }
  898. /// <summary>
  899. /// 轧管转移长度下限(m)
  900. /// </summary>
  901. [Description("轧管转移长度下限(m)")]
  902. [Nullable(true)]
  903. [DataLength(16)]
  904. public decimal? LenRollMin
  905. {
  906. get { return lenRollMin; }
  907. set { lenRollMin = value; }
  908. }
  909. /// <summary>
  910. /// 工序目标外径
  911. /// </summary>
  912. [Description("工序目标外径")]
  913. [Nullable(true)]
  914. [DataLength(10)]
  915. public decimal? Aimoutdiameter
  916. {
  917. get { return aimoutdiameter; }
  918. set { aimoutdiameter = value; }
  919. }
  920. /// <summary>
  921. /// 工序目标壁厚
  922. /// </summary>
  923. [Description("工序目标壁厚")]
  924. [Nullable(true)]
  925. [DataLength(10)]
  926. public decimal? Aimwallthick
  927. {
  928. get { return aimwallthick; }
  929. set { aimwallthick = value; }
  930. }
  931. /// <summary>
  932. /// 工序目标长度
  933. /// </summary>
  934. [Description("工序目标长度")]
  935. [Nullable(true)]
  936. [DataLength(10)]
  937. public decimal? Aimlength
  938. {
  939. get { return aimlength; }
  940. set { aimlength = value; }
  941. }
  942. /// <summary>
  943. /// 管坯直径
  944. /// </summary>
  945. [Description("管坯直径")]
  946. [Nullable(true)]
  947. [DataLength(10)]
  948. public decimal? DiameterGp
  949. {
  950. get { return diameterGp; }
  951. set { diameterGp = value; }
  952. }
  953. /// <summary>
  954. /// 单倍坯长(mm)
  955. /// </summary>
  956. [Description("单倍坯长(mm)")]
  957. [Nullable(true)]
  958. [DataLength(10)]
  959. public decimal? LenGpSingle
  960. {
  961. get { return lenGpSingle; }
  962. set { lenGpSingle = value; }
  963. }
  964. /// <summary>
  965. /// 轧后长度
  966. /// </summary>
  967. [Description("轧后长度")]
  968. [Nullable(true)]
  969. [DataLength(10)]
  970. public decimal? RollLength
  971. {
  972. get { return rollLength; }
  973. set { rollLength = value; }
  974. }
  975. /// <summary>
  976. /// 切头(mm)
  977. /// </summary>
  978. [Description("切头(mm)")]
  979. [Nullable(true)]
  980. [DataLength(10)]
  981. public decimal? LenCuthead
  982. {
  983. get { return lenCuthead; }
  984. set { lenCuthead = value; }
  985. }
  986. /// <summary>
  987. /// 切尾(mm)
  988. /// </summary>
  989. [Description("切尾(mm)")]
  990. [Nullable(true)]
  991. [DataLength(10)]
  992. public decimal? LenCutend
  993. {
  994. get { return lenCutend; }
  995. set { lenCutend = value; }
  996. }
  997. /// <summary>
  998. /// 分切数
  999. /// </summary>
  1000. [Description("分切数")]
  1001. [Nullable(true)]
  1002. [DataLength(10)]
  1003. public decimal? OutnumCut
  1004. {
  1005. get { return outnumCut; }
  1006. set { outnumCut = value; }
  1007. }
  1008. /// <summary>
  1009. /// 芯棒直径(mm)
  1010. /// </summary>
  1011. [Description("芯棒直径(mm)")]
  1012. [Nullable(true)]
  1013. [DataLength(10)]
  1014. public decimal? DiameterMandrel
  1015. {
  1016. get { return diameterMandrel; }
  1017. set { diameterMandrel = value; }
  1018. }
  1019. /// <summary>
  1020. /// 孔型代码(4007)
  1021. /// </summary>
  1022. [Description("孔型代码(4007)")]
  1023. [Nullable(true)]
  1024. [DataLength(20)]
  1025. public string PassCode
  1026. {
  1027. get { return passCode; }
  1028. set { passCode = value; }
  1029. }
  1030. /// <summary>
  1031. /// 孔型描述
  1032. /// </summary>
  1033. [Description("孔型描述")]
  1034. [Nullable(true)]
  1035. [DataLength(100)]
  1036. public string PassName
  1037. {
  1038. get { return passName; }
  1039. set { passName = value; }
  1040. }
  1041. /// <summary>
  1042. /// 待投入重量
  1043. /// </summary>
  1044. [Description("待投入重量")]
  1045. [Nullable(true)]
  1046. [DataLength(10)]
  1047. public decimal? InWeightS
  1048. {
  1049. get { return inWeightS; }
  1050. set { inWeightS = value; }
  1051. }
  1052. /// <summary>
  1053. /// 待投入支数
  1054. /// </summary>
  1055. [Description("待投入支数")]
  1056. [Nullable(true)]
  1057. [DataLength(10)]
  1058. public decimal? InNumS
  1059. {
  1060. get { return inNumS; }
  1061. set { inNumS = value; }
  1062. }
  1063. /// <summary>
  1064. /// 排产重量
  1065. /// </summary>
  1066. [Description("排产重量")]
  1067. [Nullable(true)]
  1068. [DataLength(10)]
  1069. public decimal? WeigthS
  1070. {
  1071. get { return weigthS; }
  1072. set { weigthS = value; }
  1073. }
  1074. /// <summary>
  1075. /// 排产支数
  1076. /// </summary>
  1077. [Description("排产支数")]
  1078. [Nullable(true)]
  1079. [DataLength(10)]
  1080. public decimal? NumS
  1081. {
  1082. get { return numS; }
  1083. set { numS = value; }
  1084. }
  1085. /// <summary>
  1086. /// 加投重量
  1087. /// </summary>
  1088. [Description("加投重量")]
  1089. [Nullable(true)]
  1090. [DataLength(10)]
  1091. public decimal? AddWtIn
  1092. {
  1093. get { return addWtIn; }
  1094. set { addWtIn = value; }
  1095. }
  1096. /// <summary>
  1097. /// 加投支数
  1098. /// </summary>
  1099. [Description("加投支数")]
  1100. [Nullable(true)]
  1101. [DataLength(10)]
  1102. public decimal? AddNumIn
  1103. {
  1104. get { return addNumIn; }
  1105. set { addNumIn = value; }
  1106. }
  1107. /// <summary>
  1108. /// 投入利库量
  1109. /// </summary>
  1110. [Description("投入利库量")]
  1111. [Nullable(true)]
  1112. [DataLength(10)]
  1113. public decimal? MatchWtIn
  1114. {
  1115. get { return matchWtIn; }
  1116. set { matchWtIn = value; }
  1117. }
  1118. /// <summary>
  1119. /// 投入利库支数
  1120. /// </summary>
  1121. [Description("投入利库支数")]
  1122. [Nullable(true)]
  1123. [DataLength(10)]
  1124. public decimal? MatchNumIn
  1125. {
  1126. get { return matchNumIn; }
  1127. set { matchNumIn = value; }
  1128. }
  1129. /// <summary>
  1130. /// 是否末工序(末工序时成品属性有效)
  1131. /// </summary>
  1132. [Description("是否末工序(末工序时成品属性有效)")]
  1133. [Nullable(true)]
  1134. [DataLength(1)]
  1135. public string Isendgx
  1136. {
  1137. get { return isendgx; }
  1138. set { isendgx = value; }
  1139. }
  1140. /// <summary>
  1141. /// 是否轧管监制
  1142. /// </summary>
  1143. [Description("是否轧管监制")]
  1144. [Nullable(true)]
  1145. [DataLength(1)]
  1146. public string IfMonitorZg
  1147. {
  1148. get { return ifMonitorZg; }
  1149. set { ifMonitorZg = value; }
  1150. }
  1151. /// <summary>
  1152. /// 监制编号
  1153. /// </summary>
  1154. [Description("监制编号")]
  1155. [Nullable(true)]
  1156. [DataLength(40)]
  1157. public string PrdcrNo
  1158. {
  1159. get { return prdcrNo; }
  1160. set { prdcrNo = value; }
  1161. }
  1162. /// <summary>
  1163. /// 本工序监制点
  1164. /// </summary>
  1165. [Description("本工序监制点")]
  1166. [Nullable(true)]
  1167. [DataLength(200)]
  1168. public string MonitorPoint
  1169. {
  1170. get { return monitorPoint; }
  1171. set { monitorPoint = value; }
  1172. }
  1173. /// <summary>
  1174. /// 工艺文件号
  1175. /// </summary>
  1176. [Description("工艺文件号")]
  1177. [Nullable(true)]
  1178. [DataLength(400)]
  1179. public string CraftFileNo
  1180. {
  1181. get { return craftFileNo; }
  1182. set { craftFileNo = value; }
  1183. }
  1184. /// <summary>
  1185. /// 工艺文件责任人
  1186. /// </summary>
  1187. [Description("工艺文件责任人")]
  1188. [Nullable(true)]
  1189. [DataLength(20)]
  1190. public string CraftFileMan
  1191. {
  1192. get { return craftFileMan; }
  1193. set { craftFileMan = value; }
  1194. }
  1195. /// <summary>
  1196. /// 工艺序号
  1197. /// </summary>
  1198. [Description("工艺序号")]
  1199. [Nullable(true)]
  1200. [DataLength(5)]
  1201. public decimal? CraftSeq
  1202. {
  1203. get { return craftSeq; }
  1204. set { craftSeq = value; }
  1205. }
  1206. /// <summary>
  1207. /// 本工序点路径
  1208. /// </summary>
  1209. [Description("本工序点路径")]
  1210. [Nullable(true)]
  1211. [DataLength(200)]
  1212. public string StationRoad
  1213. {
  1214. get { return stationRoad; }
  1215. set { stationRoad = value; }
  1216. }
  1217. /// <summary>
  1218. /// 生产年月
  1219. /// </summary>
  1220. [Description("生产年月")]
  1221. [Nullable(true)]
  1222. [DataLength(20)]
  1223. public string ProMonth
  1224. {
  1225. get { return proMonth; }
  1226. set { proMonth = value; }
  1227. }
  1228. /// <summary>
  1229. /// 成分标准索引号集合(内控)
  1230. /// </summary>
  1231. [Description("成分标准索引号集合(内控)")]
  1232. [Nullable(true)]
  1233. [DataLength(400)]
  1234. public string Cic
  1235. {
  1236. get { return cic; }
  1237. set { cic = value; }
  1238. }
  1239. /// <summary>
  1240. /// 材质标准索引号集合(内控)
  1241. /// </summary>
  1242. [Description("材质标准索引号集合(内控)")]
  1243. [Nullable(true)]
  1244. [DataLength(400)]
  1245. public string Pic
  1246. {
  1247. get { return pic; }
  1248. set { pic = value; }
  1249. }
  1250. /// <summary>
  1251. /// 公差标准索引号集合(内控)
  1252. /// </summary>
  1253. [Description("公差标准索引号集合(内控)")]
  1254. [Nullable(true)]
  1255. [DataLength(400)]
  1256. public string Sic
  1257. {
  1258. get { return sic; }
  1259. set { sic = value; }
  1260. }
  1261. /// <summary>
  1262. /// 探伤索引号集合(内控)
  1263. /// </summary>
  1264. [Description("探伤索引号集合(内控)")]
  1265. [Nullable(true)]
  1266. [DataLength(400)]
  1267. public string Dic
  1268. {
  1269. get { return dic; }
  1270. set { dic = value; }
  1271. }
  1272. /// <summary>
  1273. /// 水压索引码集合(内控)
  1274. /// </summary>
  1275. [Description("水压索引码集合(内控)")]
  1276. [Nullable(true)]
  1277. [DataLength(400)]
  1278. public string Wic
  1279. {
  1280. get { return wic; }
  1281. set { wic = value; }
  1282. }
  1283. /// <summary>
  1284. /// 加工标准索引号集合(,)(内控)
  1285. /// </summary>
  1286. [Description("加工标准索引号集合(,)(内控)")]
  1287. [Nullable(true)]
  1288. [DataLength(400)]
  1289. public string Gic
  1290. {
  1291. get { return gic; }
  1292. set { gic = value; }
  1293. }
  1294. /// <summary>
  1295. /// 产线内生产顺序号
  1296. /// </summary>
  1297. [Description("产线内生产顺序号")]
  1298. [Nullable(true)]
  1299. [DataLength(20)]
  1300. public string GxProSeq
  1301. {
  1302. get { return gxProSeq; }
  1303. set { gxProSeq = value; }
  1304. }
  1305. /// <summary>
  1306. /// 计划耗时(分)
  1307. /// </summary>
  1308. [Description("计划耗时(分)")]
  1309. [Nullable(true)]
  1310. [DataLength(10)]
  1311. public decimal? PlanUsetime
  1312. {
  1313. get { return planUsetime; }
  1314. set { planUsetime = value; }
  1315. }
  1316. /// <summary>
  1317. /// 计划开始时间
  1318. /// </summary>
  1319. [Description("计划开始时间")]
  1320. [Nullable(true)]
  1321. public string PlanTimeB
  1322. {
  1323. get { return planTimeB; }
  1324. set { planTimeB = value; }
  1325. }
  1326. /// <summary>
  1327. /// 计划结束时间
  1328. /// </summary>
  1329. [Description("计划结束时间")]
  1330. [Nullable(true)]
  1331. public string PlanTimeE
  1332. {
  1333. get { return planTimeE; }
  1334. set { planTimeE = value; }
  1335. }
  1336. /// <summary>
  1337. /// 炉计划已排重量
  1338. /// </summary>
  1339. [Description("炉计划已排重量")]
  1340. [Nullable(true)]
  1341. [DataLength(10)]
  1342. public decimal? BatchedWt
  1343. {
  1344. get { return batchedWt; }
  1345. set { batchedWt = value; }
  1346. }
  1347. /// <summary>
  1348. /// 炉计划已排支数
  1349. /// </summary>
  1350. [Description("炉计划已排支数")]
  1351. [Nullable(true)]
  1352. [DataLength(10)]
  1353. public decimal? BatchedNum
  1354. {
  1355. get { return batchedNum; }
  1356. set { batchedNum = value; }
  1357. }
  1358. /// <summary>
  1359. /// 生产完成重量
  1360. /// </summary>
  1361. [Description("生产完成重量")]
  1362. [Nullable(true)]
  1363. [DataLength(10)]
  1364. public decimal? Finishweight
  1365. {
  1366. get { return finishweight; }
  1367. set { finishweight = value; }
  1368. }
  1369. /// <summary>
  1370. /// 生产完成支数
  1371. /// </summary>
  1372. [Description("生产完成支数")]
  1373. [Nullable(true)]
  1374. [DataLength(10)]
  1375. public decimal? Finishnum
  1376. {
  1377. get { return finishnum; }
  1378. set { finishnum = value; }
  1379. }
  1380. /// <summary>
  1381. /// 执行状态(0计划,1生产中,2完成,3关闭A)
  1382. /// </summary>
  1383. [Description("执行状态")]
  1384. [Nullable(true)]
  1385. [DataLength(10)]
  1386. public string ExeStatus
  1387. {
  1388. get { return exeStatus; }
  1389. set { exeStatus = value; }
  1390. }
  1391. /// <summary>
  1392. /// 是否检修计划
  1393. /// </summary>
  1394. [Description("是否检修计划")]
  1395. [Nullable(true)]
  1396. [DataLength(1)]
  1397. public string IsRepairPln
  1398. {
  1399. get { return isRepairPln; }
  1400. set { isRepairPln = value; }
  1401. }
  1402. /// <summary>
  1403. /// 检修类型
  1404. /// </summary>
  1405. [Description("检修类型")]
  1406. [Nullable(true)]
  1407. [DataLength(40)]
  1408. public string RepairType
  1409. {
  1410. get { return repairType; }
  1411. set { repairType = value; }
  1412. }
  1413. /// <summary>
  1414. /// 是否确认
  1415. /// </summary>
  1416. [Description("是否确认")]
  1417. [Nullable(true)]
  1418. [DataLength(1)]
  1419. public string IsPlanOk
  1420. {
  1421. get { return isPlanOk; }
  1422. set { isPlanOk = value; }
  1423. }
  1424. /// <summary>
  1425. /// 管坯需求确认否
  1426. /// </summary>
  1427. [Description("管坯需求确认否")]
  1428. [Nullable(true)]
  1429. [DataLength(1)]
  1430. public string GpreqIfOk
  1431. {
  1432. get { return gpreqIfOk; }
  1433. set { gpreqIfOk = value; }
  1434. }
  1435. /// <summary>
  1436. /// 管坯需求编号
  1437. /// </summary>
  1438. [Description("管坯需求编号")]
  1439. [Nullable(true)]
  1440. [DataLength(20)]
  1441. public string GpreqId
  1442. {
  1443. get { return gpreqId; }
  1444. set { gpreqId = value; }
  1445. }
  1446. /// <summary>
  1447. /// 轧批号
  1448. /// </summary>
  1449. [Description("轧批号")]
  1450. [Nullable(true)]
  1451. [DataLength(20)]
  1452. public string ZyBatchId
  1453. {
  1454. get { return zyBatchId; }
  1455. set { zyBatchId = value; }
  1456. }
  1457. /// <summary>
  1458. /// 管坯成分标准索引号集合(内控)
  1459. /// </summary>
  1460. [Description("管坯成分标准索引号集合(内控)")]
  1461. [Nullable(true)]
  1462. [DataLength(400)]
  1463. public string CicGroupGp
  1464. {
  1465. get { return cicGroupGp; }
  1466. set { cicGroupGp = value; }
  1467. }
  1468. /// <summary>
  1469. /// 管坯材质标准索引号集合(内控)
  1470. /// </summary>
  1471. [Description("管坯材质标准索引号集合(内控)")]
  1472. [Nullable(true)]
  1473. [DataLength(400)]
  1474. public string PicGroupGp
  1475. {
  1476. get { return picGroupGp; }
  1477. set { picGroupGp = value; }
  1478. }
  1479. /// <summary>
  1480. /// 管坯公差标准索引号集合(内控)
  1481. /// </summary>
  1482. [Description("管坯公差标准索引号集合(内控)")]
  1483. [Nullable(true)]
  1484. [DataLength(400)]
  1485. public string SicGroupGp
  1486. {
  1487. get { return sicGroupGp; }
  1488. set { sicGroupGp = value; }
  1489. }
  1490. /// <summary>
  1491. /// 管坯探伤索引号集合(内控)
  1492. /// </summary>
  1493. [Description("管坯探伤索引号集合(内控)")]
  1494. [Nullable(true)]
  1495. [DataLength(400)]
  1496. public string DicGroupGp
  1497. {
  1498. get { return dicGroupGp; }
  1499. set { dicGroupGp = value; }
  1500. }
  1501. /// <summary>
  1502. /// 管坯水压索引码集合(内控)
  1503. /// </summary>
  1504. [Description("管坯水压索引码集合(内控)")]
  1505. [Nullable(true)]
  1506. [DataLength(400)]
  1507. public string WicGroupGp
  1508. {
  1509. get { return wicGroupGp; }
  1510. set { wicGroupGp = value; }
  1511. }
  1512. /// <summary>
  1513. /// 管坯加工标准索引号集合(内控)
  1514. /// </summary>
  1515. [Description("管坯加工标准索引号集合(内控)")]
  1516. [Nullable(true)]
  1517. [DataLength(400)]
  1518. public string GicGroupGp
  1519. {
  1520. get { return gicGroupGp; }
  1521. set { gicGroupGp = value; }
  1522. }
  1523. /// <summary>
  1524. /// 默认管坯成分标准索引号(内控)
  1525. /// </summary>
  1526. [Description("默认管坯成分标准索引号(内控)")]
  1527. [Nullable(true)]
  1528. [DataLength(40)]
  1529. public string CicGp
  1530. {
  1531. get { return cicGp; }
  1532. set { cicGp = value; }
  1533. }
  1534. /// <summary>
  1535. /// 默认管坯材质标准索引号(内控)
  1536. /// </summary>
  1537. [Description("默认管坯材质标准索引号(内控)")]
  1538. [Nullable(true)]
  1539. [DataLength(40)]
  1540. public string PicGp
  1541. {
  1542. get { return picGp; }
  1543. set { picGp = value; }
  1544. }
  1545. /// <summary>
  1546. /// 默认管坯公差标准索引号(内控)
  1547. /// </summary>
  1548. [Description("默认管坯公差标准索引号(内控)")]
  1549. [Nullable(true)]
  1550. [DataLength(40)]
  1551. public string SicGp
  1552. {
  1553. get { return sicGp; }
  1554. set { sicGp = value; }
  1555. }
  1556. /// <summary>
  1557. /// 默认管坯探伤索引号(内控)
  1558. /// </summary>
  1559. [Description("默认管坯探伤索引号(内控)")]
  1560. [Nullable(true)]
  1561. [DataLength(40)]
  1562. public string DicGp
  1563. {
  1564. get { return dicGp; }
  1565. set { dicGp = value; }
  1566. }
  1567. /// <summary>
  1568. /// 默认管坯水压索引码(内控)
  1569. /// </summary>
  1570. [Description("默认管坯水压索引码(内控)")]
  1571. [Nullable(true)]
  1572. [DataLength(40)]
  1573. public string WicGp
  1574. {
  1575. get { return wicGp; }
  1576. set { wicGp = value; }
  1577. }
  1578. /// <summary>
  1579. /// 默认管坯加工标准索引号(内控)
  1580. /// </summary>
  1581. [Description("默认管坯加工标准索引号(内控)")]
  1582. [Nullable(true)]
  1583. [DataLength(40)]
  1584. public string GicGp
  1585. {
  1586. get { return gicGp; }
  1587. set { gicGp = value; }
  1588. }
  1589. /// <summary>
  1590. /// 国内外
  1591. /// </summary>
  1592. [Description("国内外")]
  1593. [Nullable(true)]
  1594. [DataLength(20)]
  1595. public string IfExport
  1596. {
  1597. get { return ifExport; }
  1598. set { ifExport = value; }
  1599. }
  1600. /// <summary>
  1601. /// 创建时间
  1602. /// </summary>
  1603. [Description("创建时间")]
  1604. [Nullable(true)]
  1605. public string CreateTime
  1606. {
  1607. get { return createTime; }
  1608. set { createTime = value; }
  1609. }
  1610. /// <summary>
  1611. /// 备注
  1612. /// </summary>
  1613. [Description("备注")]
  1614. [Nullable(true)]
  1615. [DataLength(200)]
  1616. public string Memo
  1617. {
  1618. get { return memo; }
  1619. set { memo = value; }
  1620. }
  1621. /// <summary>
  1622. /// 确认时间
  1623. /// </summary>
  1624. [Description("确认时间")]
  1625. [Nullable(true)]
  1626. public string IssuedTime
  1627. {
  1628. get { return issuedTime; }
  1629. set { issuedTime = value; }
  1630. }
  1631. /// <summary>
  1632. /// 确认人
  1633. /// </summary>
  1634. [Description("确认人")]
  1635. [Nullable(true)]
  1636. [DataLength(20)]
  1637. public string IssuedMan
  1638. {
  1639. get { return issuedMan; }
  1640. set { issuedMan = value; }
  1641. }
  1642. /// <summary>
  1643. /// 最近取消确认时间
  1644. /// </summary>
  1645. [Description("最近取消确认时间")]
  1646. [Nullable(true)]
  1647. public string LastUndownTime
  1648. {
  1649. get { return lastUndownTime; }
  1650. set { lastUndownTime = value; }
  1651. }
  1652. /// <summary>
  1653. /// 最近取消确认人
  1654. /// </summary>
  1655. [Description("最近取消确认人")]
  1656. [Nullable(true)]
  1657. [DataLength(20)]
  1658. public string LastUndownMan
  1659. {
  1660. get { return lastUndownMan; }
  1661. set { lastUndownMan = value; }
  1662. }
  1663. /// <summary>
  1664. /// 合同下发版次(年月日+3位流水)
  1665. /// </summary>
  1666. [Description("合同下发版次(年月日+3位流水)")]
  1667. [Nullable(true)]
  1668. [DataLength(20)]
  1669. public string VersionNo
  1670. {
  1671. get { return versionNo; }
  1672. set { versionNo = value; }
  1673. }
  1674. /// <summary>
  1675. /// 加工成本
  1676. /// </summary>
  1677. [Description("加工成本")]
  1678. [Nullable(true)]
  1679. [DataLength(10)]
  1680. public decimal? ProcessingCost
  1681. {
  1682. get { return processingCost; }
  1683. set { processingCost = value; }
  1684. }
  1685. /// <summary>
  1686. /// 完全成本
  1687. /// </summary>
  1688. [Description("完全成本")]
  1689. [Nullable(true)]
  1690. [DataLength(10)]
  1691. public decimal? TotalCost
  1692. {
  1693. get { return totalCost; }
  1694. set { totalCost = value; }
  1695. }
  1696. /// <summary>
  1697. /// 炉计划是否下发
  1698. /// </summary>
  1699. [Description("炉计划是否下发")]
  1700. [Nullable(true)]
  1701. [DataLength(1)]
  1702. public string IfStoveIssued
  1703. {
  1704. get { return ifStoveIssued; }
  1705. set { ifStoveIssued = value; }
  1706. }
  1707. /// <summary>
  1708. /// 炉计划下发时间
  1709. /// </summary>
  1710. [Description("炉计划下发时间")]
  1711. [Nullable(true)]
  1712. public string StoveIssuedTime
  1713. {
  1714. get { return stoveIssuedTime; }
  1715. set { stoveIssuedTime = value; }
  1716. }
  1717. /// <summary>
  1718. /// 炉计划下发人
  1719. /// </summary>
  1720. [Description("炉计划下发人")]
  1721. [Nullable(true)]
  1722. [DataLength(20)]
  1723. public string StoveIssuedMan
  1724. {
  1725. get { return stoveIssuedMan; }
  1726. set { stoveIssuedMan = value; }
  1727. }
  1728. /// <summary>
  1729. /// 是否上料行
  1730. /// </summary>
  1731. [Description("是否上料行")]
  1732. [Nullable(true)]
  1733. [DataLength(1)]
  1734. public string IsOnloadLine
  1735. {
  1736. get { return isOnloadLine; }
  1737. set { isOnloadLine = value; }
  1738. }
  1739. }
  1740. }