PlnSteelforOrdEntity.cs 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977
  1. using System.ComponentModel;
  2. using Core.Mes.Client.Comm.Attribute;
  3. namespace Core.StlMes.Client.LgClassModel
  4. {
  5. /// <summary>
  6. /// 数据库表PLN_STEELFOR_ORD所对应的实体类(生成工具:代码生成工具3.0)
  7. /// 作者:zhou 时间:2017-08-03
  8. /// </summary>
  9. public class PlnSteelforOrdEntity
  10. {
  11. /// <summary>
  12. /// 虚拟炉号
  13. /// </summary>
  14. private string furnaceno = "";
  15. /// <summary>
  16. /// 顺序号(虚拟炉号)
  17. /// </summary>
  18. private string sequenceno = "";
  19. /// <summary>
  20. /// 浇次号
  21. /// </summary>
  22. private string castNo = "";
  23. /// <summary>
  24. /// 浇次顺序号
  25. /// </summary>
  26. private string castSeq = "";
  27. /// <summary>
  28. /// 浇内顺序号
  29. /// </summary>
  30. private string castStoveSeq = "";
  31. /// <summary>
  32. /// 状态(0=组炉,1=组浇,2=下发)
  33. /// </summary>
  34. private string status = "";
  35. /// <summary>
  36. /// 铸造订单编号
  37. /// </summary>
  38. private string proPlanId = "";
  39. /// <summary>
  40. /// 工序排产序号
  41. /// </summary>
  42. private string gxPlanNo = "";
  43. /// <summary>
  44. /// 管坯需求编号
  45. /// </summary>
  46. private string gpreqId = "";
  47. /// <summary>
  48. /// 铸造坯物料编码
  49. /// </summary>
  50. private string materialNo = "";
  51. /// <summary>
  52. /// 铸造坯物料描述
  53. /// </summary>
  54. private string materialName = "";
  55. /// <summary>
  56. /// 钢种代码
  57. /// </summary>
  58. private string gradecode = "";
  59. /// <summary>
  60. /// 钢种名称
  61. /// </summary>
  62. private string gradename = "";
  63. /// <summary>
  64. /// 管坯直径
  65. /// </summary>
  66. private string diameter = null;
  67. /// <summary>
  68. /// 单倍坯长(mm)
  69. /// </summary>
  70. private double? lenGpSingle = null;
  71. /// <summary>
  72. /// 倍尺数
  73. /// </summary>
  74. private double? cutNumGp = null;
  75. /// <summary>
  76. /// 倍尺长度(mm)
  77. /// </summary>
  78. private double? lengthM = null;
  79. /// <summary>
  80. /// 单倍坯重
  81. /// </summary>
  82. private decimal? weightGpOne = null;
  83. /// <summary>
  84. /// 倍尺单重
  85. /// </summary>
  86. private decimal? weightM = null;
  87. /// <summary>
  88. /// 倍尺坯重量(计划吨)
  89. /// </summary>
  90. private decimal? totWeightM = null;
  91. /// <summary>
  92. /// 倍尺坯支数(计划支)
  93. /// </summary>
  94. private double? totMumM = null;
  95. /// <summary>
  96. /// 管坯类型(1铸坯2锻坯)
  97. /// </summary>
  98. private string gptype = "";
  99. /// <summary>
  100. /// 铸造类型(1连铸2模铸)
  101. /// </summary>
  102. private string castingtype = "";
  103. /// <summary>
  104. /// 切割方式
  105. /// </summary>
  106. private string cuttype = "";
  107. /// <summary>
  108. /// 是否余材(0订单材1余材)
  109. /// </summary>
  110. private string surplusflag = "";
  111. /// <summary>
  112. /// 余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量)
  113. /// </summary>
  114. private string surplusType = "";
  115. /// <summary>
  116. /// 余材参照铸造订单号
  117. /// </summary>
  118. private string refOrdZz = "";
  119. /// <summary>
  120. /// 余材参照管坯需求号
  121. /// </summary>
  122. private string refGpreqId = "";
  123. /// <summary>
  124. /// 是否余材已再分配
  125. /// </summary>
  126. private string ifSurplusAlloted = "";
  127. /// <summary>
  128. /// 成分标准索引号(内控)
  129. /// </summary>
  130. private string cic = "";
  131. /// <summary>
  132. /// 材质标准索引号(内控)
  133. /// </summary>
  134. private string pic = "";
  135. /// <summary>
  136. /// 公差标准索引号(内控)
  137. /// </summary>
  138. private string sic = "";
  139. /// <summary>
  140. /// 探伤索引号(内控)
  141. /// </summary>
  142. private string dic = "";
  143. /// <summary>
  144. /// 是否已轧管组批 (0未组批 1 已组批 2 坯料下线)
  145. /// </summary>
  146. private string ifBatchedZg = "";
  147. /// <summary>
  148. /// 轧管组批支数
  149. /// </summary>
  150. private decimal? batchedNum = null;
  151. /// <summary>
  152. /// 备注
  153. /// </summary>
  154. private string memo = "";
  155. /// <summary>
  156. /// 制定人
  157. /// </summary>
  158. private string makeman = "";
  159. /// <summary>
  160. /// 制定时间
  161. /// </summary>
  162. private string maketime = "";
  163. /// <summary>
  164. /// 投入物料编码
  165. /// </summary>
  166. private string wlidIn = "";
  167. /// <summary>
  168. /// 投入物料描述
  169. /// </summary>
  170. private string wldescIn = "";
  171. /// <summary>
  172. /// 铸机号
  173. /// </summary>
  174. private string ccmid = "";
  175. /// <summary>
  176. /// 冶炼炉号(电炉号)
  177. /// </summary>
  178. private string stoveNo = "";
  179. /// <summary>
  180. /// 判定炉号
  181. /// </summary>
  182. private string judgeStoveNo = "";
  183. /// <summary>
  184. /// 标示炉号(打印炉号)
  185. /// </summary>
  186. private string flagStoveNo = "";
  187. /// <summary>
  188. /// 作业状态:00=初始状态;10=切割完成;20=表检完成;30=下线
  189. /// </summary>
  190. private string ccmState = "";
  191. /// <summary>
  192. /// 铸造计划类型:00=正常;10=表检返线;20=下线返线
  193. /// </summary>
  194. private string ccmPlnType = "";
  195. /// <summary>
  196. /// 判定炉号序号
  197. /// </summary>
  198. private string judgeStoveNoSeq = "";
  199. /// <summary>
  200. /// 铸流号
  201. /// </summary>
  202. private string flowno = "";
  203. /// <summary>
  204. /// 铸造产线编码
  205. /// </summary>
  206. private string plineCode = "";
  207. /// <summary>
  208. /// 铸造产线描述
  209. /// </summary>
  210. private string plineName = "";
  211. /// <summary>
  212. /// 电炉产线编码
  213. /// </summary>
  214. private string efPlineCode = "";
  215. /// <summary>
  216. /// 电炉产线描述
  217. /// </summary>
  218. private string efPlineName = "";
  219. /// <summary>
  220. /// 炉次顺序号(不同电炉产线顺序独立连续)
  221. /// </summary>
  222. private string furnacenoSeq = "";
  223. /// <summary>
  224. /// 连铸顺序号(不同铸机产线顺序独立连续)
  225. /// </summary>
  226. private string ccmSeq = "";
  227. /// <summary>
  228. /// 倍尺坯重量(实绩吨)
  229. /// </summary>
  230. private decimal? actWeightM = null;
  231. /// <summary>
  232. /// 倍尺坯支数(实绩支)
  233. /// </summary>
  234. private decimal? actMumM = null;
  235. /// <summary>
  236. /// 无注释
  237. /// </summary>
  238. private string wic = "";
  239. /// <summary>
  240. /// 无注释
  241. /// </summary>
  242. private string gic = "";
  243. /// <summary>
  244. /// 选择
  245. /// </summary>
  246. [Description("选择")]
  247. public bool Check { get; set; }
  248. /// <summary>
  249. /// 虚拟炉号
  250. /// </summary>
  251. [Description("炉次号")]
  252. [Nullable(false)]
  253. [DataLength(20)]
  254. public string Furnaceno
  255. {
  256. get { return furnaceno; }
  257. set { furnaceno = value; }
  258. }
  259. /// <summary>
  260. /// 顺序号(虚拟炉号)
  261. /// </summary>
  262. [Description("炉次内序号")]
  263. [Nullable(false)]
  264. [DataLength(20)]
  265. public string Sequenceno
  266. {
  267. get { return sequenceno; }
  268. set { sequenceno = value; }
  269. }
  270. /// <summary>
  271. /// 浇次号
  272. /// </summary>
  273. [Description("浇次号")]
  274. [Nullable(true)]
  275. [DataLength(20)]
  276. public string CastNo
  277. {
  278. get { return castNo; }
  279. set { castNo = value; }
  280. }
  281. /// <summary>
  282. /// 浇次顺序号(不同铸机顺序独立连续)
  283. /// </summary>
  284. [Description("浇次顺序号")]
  285. [Nullable(true)]
  286. [DataLength(20)]
  287. public string CastSeq
  288. {
  289. get { return castSeq; }
  290. set { castSeq = value; }
  291. }
  292. /// <summary>
  293. /// 浇内顺序号
  294. /// </summary>
  295. [Description("浇次内序号")]
  296. [Nullable(true)]
  297. [DataLength(20)]
  298. public string CastStoveSeq
  299. {
  300. get { return castStoveSeq; }
  301. set { castStoveSeq = value; }
  302. }
  303. /// <summary>
  304. /// 状态(0=组炉,1=组浇,2=下发)
  305. /// </summary>
  306. [Description("状态")]
  307. [Nullable(true)]
  308. [DataLength(20)]
  309. public string Status
  310. {
  311. get { return status; }
  312. set { status = value; }
  313. }
  314. /// <summary>
  315. /// 铸造订单编号
  316. /// </summary>
  317. [Description("铸造订单")]
  318. [Nullable(true)]
  319. [DataLength(20)]
  320. public string ProPlanId
  321. {
  322. get { return proPlanId; }
  323. set { proPlanId = value; }
  324. }
  325. /// <summary>
  326. /// 工序排产序号
  327. /// </summary>
  328. [Description("铸造订单序号")]
  329. [Nullable(true)]
  330. [DataLength(10)]
  331. public string GxPlanNo
  332. {
  333. get { return gxPlanNo; }
  334. set { gxPlanNo = value; }
  335. }
  336. /// <summary>
  337. /// 管坯需求编号
  338. /// </summary>
  339. [Description("管坯需求编号")]
  340. [Nullable(true)]
  341. [DataLength(20)]
  342. public string GpreqId
  343. {
  344. get { return gpreqId; }
  345. set { gpreqId = value; }
  346. }
  347. /// <summary>
  348. /// 铸造坯物料编码
  349. /// </summary>
  350. [Description("铸造坯物料编码")]
  351. [Nullable(true)]
  352. [DataLength(20)]
  353. public string MaterialNo
  354. {
  355. get { return materialNo; }
  356. set { materialNo = value; }
  357. }
  358. /// <summary>
  359. /// 铸造坯物料描述
  360. /// </summary>
  361. [Description("产出物料")]
  362. [Nullable(true)]
  363. [DataLength(100)]
  364. public string MaterialName
  365. {
  366. get { return materialName; }
  367. set { materialName = value; }
  368. }
  369. /// <summary>
  370. /// 钢种代码
  371. /// </summary>
  372. [Description("钢种代码")]
  373. [Nullable(true)]
  374. [DataLength(10)]
  375. public string Gradecode
  376. {
  377. get { return gradecode; }
  378. set { gradecode = value; }
  379. }
  380. /// <summary>
  381. /// 钢种名称
  382. /// </summary>
  383. [Description("钢种")]
  384. [Nullable(true)]
  385. [DataLength(100)]
  386. public string Gradename
  387. {
  388. get { return gradename; }
  389. set { gradename = value; }
  390. }
  391. /// <summary>
  392. /// 管坯直径
  393. /// </summary>
  394. [Description("规格")]
  395. [Nullable(true)]
  396. [DataLength(10)]
  397. public string Diameter
  398. {
  399. get { return diameter; }
  400. set { diameter = value; }
  401. }
  402. /// <summary>
  403. /// 单倍坯长(mm)
  404. /// </summary>
  405. [Description("单倍长")]
  406. [Nullable(true)]
  407. [DataLength(10)]
  408. public double? LenGpSingle
  409. {
  410. get { return lenGpSingle; }
  411. set { lenGpSingle = value; }
  412. }
  413. /// <summary>
  414. /// 倍尺数
  415. /// </summary>
  416. [Description("倍尺数")]
  417. [Nullable(true)]
  418. [DataLength(5)]
  419. public double? CutNumGp
  420. {
  421. get { return cutNumGp; }
  422. set { cutNumGp = value; }
  423. }
  424. /// <summary>
  425. /// 倍尺长度(mm)
  426. /// </summary>
  427. [Description("倍尺长")]
  428. [Nullable(true)]
  429. [DataLength(10)]
  430. public double? LengthM
  431. {
  432. get { return lengthM; }
  433. set { lengthM = value; }
  434. }
  435. /// <summary>
  436. /// 单倍坯重
  437. /// </summary>
  438. [Description("单倍坯重")]
  439. [Nullable(true)]
  440. [DataLength(10)]
  441. public decimal? WeightGpOne
  442. {
  443. get { return weightGpOne; }
  444. set { weightGpOne = value; }
  445. }
  446. /// <summary>
  447. /// 倍尺单重
  448. /// </summary>
  449. [Description("倍尺单重")]
  450. [Nullable(true)]
  451. [DataLength(10)]
  452. public decimal? WeightM
  453. {
  454. get { return weightM; }
  455. set { weightM = value; }
  456. }
  457. /// <summary>
  458. /// 倍尺坯重量(计划吨)
  459. /// </summary>
  460. [Description("总重量")]
  461. [Nullable(true)]
  462. [DataLength(10)]
  463. public decimal? TotWeightM
  464. {
  465. get { return totWeightM; }
  466. set { totWeightM = value; }
  467. }
  468. /// <summary>
  469. /// 倍尺坯支数(计划支)
  470. /// </summary>
  471. [Description("支数")]
  472. [Nullable(true)]
  473. [DataLength(10)]
  474. public double? TotMumM
  475. {
  476. get { return totMumM; }
  477. set { totMumM = value; }
  478. }
  479. /// <summary>
  480. /// 管坯类型(1铸坯2锻坯)
  481. /// </summary>
  482. [Description("管坯类型")]
  483. [Nullable(true)]
  484. [DataLength(20)]
  485. public string Gptype
  486. {
  487. get { return gptype; }
  488. set { gptype = value; }
  489. }
  490. /// <summary>
  491. /// 铸造类型(1连铸2模铸)
  492. /// </summary>
  493. [Description("铸造类型")]
  494. [Nullable(true)]
  495. [DataLength(20)]
  496. public string Castingtype
  497. {
  498. get { return castingtype; }
  499. set { castingtype = value; }
  500. }
  501. /// <summary>
  502. /// 切割方式
  503. /// </summary>
  504. [Description("切割方式")]
  505. [Nullable(true)]
  506. [DataLength(20)]
  507. public string Cuttype
  508. {
  509. get { return cuttype; }
  510. set { cuttype = value; }
  511. }
  512. /// <summary>
  513. /// 是否余材(0订单材1余材)
  514. /// </summary>
  515. [Description("是否有余材")]
  516. [Nullable(true)]
  517. [DataLength(1)]
  518. public string Surplusflag
  519. {
  520. get { return surplusflag; }
  521. set { surplusflag = value; }
  522. }
  523. /// <summary>
  524. /// 余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量)
  525. /// </summary>
  526. [Description("余材类型")]
  527. [Nullable(true)]
  528. [DataLength(1)]
  529. public string SurplusType
  530. {
  531. get { return surplusType; }
  532. set { surplusType = value; }
  533. }
  534. /// <summary>
  535. /// 余材参照铸造订单号
  536. /// </summary>
  537. [Description("余材参照铸造订单号")]
  538. [Nullable(true)]
  539. [DataLength(1)]
  540. public string RefOrdZz
  541. {
  542. get { return refOrdZz; }
  543. set { refOrdZz = value; }
  544. }
  545. /// <summary>
  546. /// 余材参照管坯需求号
  547. /// </summary>
  548. [Description("余材参照管坯需求号")]
  549. [Nullable(true)]
  550. [DataLength(1)]
  551. public string RefGpreqId
  552. {
  553. get { return refGpreqId; }
  554. set { refGpreqId = value; }
  555. }
  556. /// <summary>
  557. /// 是否余材已再分配
  558. /// </summary>
  559. [Description("余材是否再分配")]
  560. [Nullable(true)]
  561. [DataLength(1)]
  562. public string IfSurplusAlloted
  563. {
  564. get { return ifSurplusAlloted; }
  565. set { ifSurplusAlloted = value; }
  566. }
  567. /// <summary>
  568. /// 成分标准索引号(内控)
  569. /// </summary>
  570. [Description("成分标准索引号(内控)")]
  571. [Nullable(true)]
  572. [DataLength(50)]
  573. public string Cic
  574. {
  575. get { return cic; }
  576. set { cic = value; }
  577. }
  578. /// <summary>
  579. /// 材质标准索引号(内控)
  580. /// </summary>
  581. [Description("材质标准索引号(内控)")]
  582. [Nullable(true)]
  583. [DataLength(50)]
  584. public string Pic
  585. {
  586. get { return pic; }
  587. set { pic = value; }
  588. }
  589. /// <summary>
  590. /// 公差标准索引号(内控)
  591. /// </summary>
  592. [Description("公差标准索引号(内控)")]
  593. [Nullable(true)]
  594. [DataLength(50)]
  595. public string Sic
  596. {
  597. get { return sic; }
  598. set { sic = value; }
  599. }
  600. /// <summary>
  601. /// 探伤索引号(内控)
  602. /// </summary>
  603. [Description("探伤索引号(内控)")]
  604. [Nullable(true)]
  605. [DataLength(50)]
  606. public string Dic
  607. {
  608. get { return dic; }
  609. set { dic = value; }
  610. }
  611. /// <summary>
  612. /// 是否已轧管组批 (0未组批 1 已组批 2 坯料下线)
  613. /// </summary>
  614. [Description("是否已轧管组批 ")]
  615. [Nullable(true)]
  616. [DataLength(1)]
  617. public string IfBatchedZg
  618. {
  619. get { return ifBatchedZg; }
  620. set { ifBatchedZg = value; }
  621. }
  622. /// <summary>
  623. /// 轧管组批支数
  624. /// </summary>
  625. [Description("轧管组批支数")]
  626. [Nullable(true)]
  627. [DataLength(10)]
  628. public decimal? BatchedNum
  629. {
  630. get { return batchedNum; }
  631. set { batchedNum = value; }
  632. }
  633. /// <summary>
  634. /// 备注
  635. /// </summary>
  636. [Description("备注")]
  637. [Nullable(true)]
  638. [DataLength(200)]
  639. public string Memo
  640. {
  641. get { return memo; }
  642. set { memo = value; }
  643. }
  644. /// <summary>
  645. /// 制定人
  646. /// </summary>
  647. [Description("制定人")]
  648. [Nullable(true)]
  649. [DataLength(20)]
  650. public string Makeman
  651. {
  652. get { return makeman; }
  653. set { makeman = value; }
  654. }
  655. /// <summary>
  656. /// 制定时间
  657. /// </summary>
  658. [Description("制定时间")]
  659. [Nullable(true)]
  660. public string Maketime
  661. {
  662. get { return maketime; }
  663. set { maketime = value; }
  664. }
  665. /// <summary>
  666. /// 投入物料编码
  667. /// </summary>
  668. [Description("投入物料编码")]
  669. [Nullable(true)]
  670. [DataLength(20)]
  671. public string WlidIn
  672. {
  673. get { return wlidIn; }
  674. set { wlidIn = value; }
  675. }
  676. /// <summary>
  677. /// 投入物料描述
  678. /// </summary>
  679. [Description("投入物料描述")]
  680. [Nullable(true)]
  681. [DataLength(40)]
  682. public string WldescIn
  683. {
  684. get { return wldescIn; }
  685. set { wldescIn = value; }
  686. }
  687. /// <summary>
  688. /// 铸机号
  689. /// </summary>
  690. [Description("铸机号")]
  691. [Nullable(true)]
  692. [DataLength(20)]
  693. public string Ccmid
  694. {
  695. get { return ccmid; }
  696. set { ccmid = value; }
  697. }
  698. /// <summary>
  699. /// 冶炼炉号(电炉号)
  700. /// </summary>
  701. [Description("冶炼炉号")]
  702. [Nullable(true)]
  703. [DataLength(20)]
  704. public string StoveNo
  705. {
  706. get { return stoveNo; }
  707. set { stoveNo = value; }
  708. }
  709. /// <summary>
  710. /// 判定炉号
  711. /// </summary>
  712. [Description("判定炉号")]
  713. [Nullable(true)]
  714. [DataLength(6)]
  715. public string JudgeStoveNo
  716. {
  717. get { return judgeStoveNo; }
  718. set { judgeStoveNo = value; }
  719. }
  720. /// <summary>
  721. /// 标示炉号(打印炉号)
  722. /// </summary>
  723. [Description("标示炉号")]
  724. [Nullable(true)]
  725. [DataLength(20)]
  726. public string FlagStoveNo
  727. {
  728. get { return flagStoveNo; }
  729. set { flagStoveNo = value; }
  730. }
  731. /// <summary>
  732. /// 作业状态:00=初始状态;10=切割完成;20=表检完成;30=下线
  733. /// </summary>
  734. [Description("作业状态")]
  735. [Nullable(true)]
  736. [DataLength(2)]
  737. public string CcmState
  738. {
  739. get { return ccmState; }
  740. set { ccmState = value; }
  741. }
  742. /// <summary>
  743. /// 铸造计划类型:00=正常;10=表检返线;20=下线返线
  744. /// </summary>
  745. [Description("铸造计划类型")]
  746. [Nullable(true)]
  747. [DataLength(2)]
  748. public string CcmPlnType
  749. {
  750. get { return ccmPlnType; }
  751. set { ccmPlnType = value; }
  752. }
  753. /// <summary>
  754. /// 判定炉号序号
  755. /// </summary>
  756. [Description("判定炉号序号")]
  757. [Nullable(true)]
  758. [DataLength(6)]
  759. public string JudgeStoveNoSeq
  760. {
  761. get { return judgeStoveNoSeq; }
  762. set { judgeStoveNoSeq = value; }
  763. }
  764. /// <summary>
  765. /// 铸流号
  766. /// </summary>
  767. [Description("铸流号")]
  768. [Nullable(true)]
  769. [DataLength(2)]
  770. public string Flowno
  771. {
  772. get { return flowno; }
  773. set { flowno = value; }
  774. }
  775. /// <summary>
  776. /// 铸造产线编码
  777. /// </summary>
  778. [Description("铸造产线编码")]
  779. [Nullable(true)]
  780. [DataLength(20)]
  781. public string PlineCode
  782. {
  783. get { return plineCode; }
  784. set { plineCode = value; }
  785. }
  786. /// <summary>
  787. /// 铸造产线描述
  788. /// </summary>
  789. [Description("铸造产线")]
  790. [Nullable(true)]
  791. [DataLength(50)]
  792. public string PlineName
  793. {
  794. get { return plineName; }
  795. set { plineName = value; }
  796. }
  797. /// <summary>
  798. /// 电炉产线编码
  799. /// </summary>
  800. [Description("电炉产线编码")]
  801. [Nullable(true)]
  802. [DataLength(20)]
  803. public string EfPlineCode
  804. {
  805. get { return efPlineCode; }
  806. set { efPlineCode = value; }
  807. }
  808. /// <summary>
  809. /// 电炉产线描述
  810. /// </summary>
  811. [Description("电炉产线")]
  812. [Nullable(true)]
  813. [DataLength(100)]
  814. public string EfPlineName
  815. {
  816. get { return efPlineName; }
  817. set { efPlineName = value; }
  818. }
  819. /// <summary>
  820. /// 炉次顺序号(不同电炉产线顺序独立连续)
  821. /// </summary>
  822. [Description("炉次顺序号")]
  823. [Nullable(true)]
  824. [DataLength(20)]
  825. public string FurnacenoSeq
  826. {
  827. get { return furnacenoSeq; }
  828. set { furnacenoSeq = value; }
  829. }
  830. /// <summary>
  831. /// 连铸顺序号(不同铸机产线顺序独立连续)
  832. /// </summary>
  833. [Description("连铸顺序号")]
  834. [Nullable(true)]
  835. [DataLength(20)]
  836. public string CcmSeq
  837. {
  838. get { return ccmSeq; }
  839. set { ccmSeq = value; }
  840. }
  841. /// <summary>
  842. /// 倍尺坯重量(实绩吨)
  843. /// </summary>
  844. [Description("倍尺坯重量(实绩吨)")]
  845. [Nullable(true)]
  846. [DataLength(10)]
  847. public decimal? ActWeightM
  848. {
  849. get { return actWeightM; }
  850. set { actWeightM = value; }
  851. }
  852. /// <summary>
  853. /// 倍尺坯支数(实绩支)
  854. /// </summary>
  855. [Description("倍尺坯支数(实绩支)")]
  856. [Nullable(true)]
  857. [DataLength(10)]
  858. public decimal? ActMumM
  859. {
  860. get { return actMumM; }
  861. set { actMumM = value; }
  862. }
  863. /// <summary>
  864. /// 无注释
  865. /// </summary>
  866. [Description("无注释")]
  867. [Nullable(true)]
  868. [DataLength(50)]
  869. public string Wic
  870. {
  871. get { return wic; }
  872. set { wic = value; }
  873. }
  874. /// <summary>
  875. /// 无注释
  876. /// </summary>
  877. [Description("无注释")]
  878. [Nullable(true)]
  879. [DataLength(50)]
  880. public string Gic
  881. {
  882. get { return gic; }
  883. set { gic = value; }
  884. }
  885. private long? cutNum = null;
  886. /// <summary>
  887. /// 分切
  888. /// </summary>
  889. [Description("分切")]
  890. [Nullable(true)]
  891. [DataLength(10)]
  892. public long? CutNum
  893. {
  894. get { return cutNum; }
  895. set { cutNum = value; }
  896. }
  897. private string gowhereName = "";
  898. /// <summary>
  899. /// 物流去向名称集合
  900. /// </summary>
  901. [Description("去向")]
  902. [Nullable(true)]
  903. [DataLength(512)]
  904. public string GowhereName
  905. {
  906. get { return gowhereName; }
  907. set { gowhereName = value; }
  908. }
  909. }
  910. }