FmisBasePlineEntity.cs 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718
  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.YdmBcPipeManage.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表FMIS_BASE_PLINE所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:milu 时间:2021-12-10
  12. /// </summary>
  13. public class FmisBasePlineEntity
  14. {
  15. /// <summary>
  16. /// 产线代码
  17. /// </summary>
  18. private string plineCode = "";
  19. /// <summary>
  20. /// 产线描述
  21. /// </summary>
  22. private string plineName = "";
  23. /// <summary>
  24. /// 管理科室代码
  25. /// </summary>
  26. private string departmentCode = "";
  27. /// <summary>
  28. /// 管理科室描述
  29. /// </summary>
  30. private string departmentDesc = "";
  31. /// <summary>
  32. /// 工序代码
  33. /// </summary>
  34. private string processCode = "";
  35. /// <summary>
  36. /// 工序描述
  37. /// </summary>
  38. private string processDesc = "";
  39. /// <summary>
  40. /// {老系统}产线代码
  41. /// </summary>
  42. private string plineCodeOld = "";
  43. /// <summary>
  44. /// 成品长度下限值
  45. /// </summary>
  46. private decimal? lengthMin = null;
  47. /// <summary>
  48. /// 成品长度上限值
  49. /// </summary>
  50. private decimal? lengthMax = null;
  51. /// <summary>
  52. /// 冷床长度(最大值)--轧管工序
  53. /// </summary>
  54. private decimal? lengthColdbed = null;
  55. /// <summary>
  56. /// 环型炉长度上限值--轧管工序
  57. /// </summary>
  58. private decimal? lengthMaxRing = null;
  59. /// <summary>
  60. /// 环型炉长度下限值--轧管工序
  61. /// </summary>
  62. private decimal? lengthMinRing = null;
  63. /// <summary>
  64. /// 脱管机长度下限值--轧管工序
  65. /// </summary>
  66. private decimal? lengthMinTube = null;
  67. /// <summary>
  68. /// 脱管机长度上限值--轧管工序
  69. /// </summary>
  70. private decimal? lengthMaxTube = null;
  71. /// <summary>
  72. /// 烧损率(%)--轧管工序
  73. /// </summary>
  74. private decimal? burnoutRate = null;
  75. /// <summary>
  76. /// 计划分组
  77. /// </summary>
  78. private string groupPlan = "";
  79. /// <summary>
  80. /// 缴库分组
  81. /// </summary>
  82. private string groupPay = "";
  83. /// <summary>
  84. /// 机组壁厚公差带能力%
  85. /// </summary>
  86. private decimal? toleranceZone = null;
  87. /// <summary>
  88. /// 管理部门代码
  89. /// </summary>
  90. private string departmentCodeP = "";
  91. /// <summary>
  92. /// 管理部门描述
  93. /// </summary>
  94. private string departmentDescP = "";
  95. /// <summary>
  96. /// 排产缩写码(计划专用)
  97. /// </summary>
  98. private string scheduleCode = "";
  99. /// <summary>
  100. /// 产线标识符(试样号字母标识)
  101. /// </summary>
  102. private string splineDesc = "";
  103. /// <summary>
  104. /// 来料长度下限
  105. /// </summary>
  106. private decimal? inMaterialLenMin = null;
  107. /// <summary>
  108. /// 来料长度上限
  109. /// </summary>
  110. private decimal? inMaterialLenMax = null;
  111. /// <summary>
  112. /// 性能批号产线标识
  113. /// </summary>
  114. private string samFcode = "";
  115. /// <summary>
  116. /// 批号规则区间(0-12;35-56)
  117. /// </summary>
  118. private string batchInterval = "";
  119. /// <summary>
  120. /// 检验委托号缩写
  121. /// </summary>
  122. private string checkNoShort = "";
  123. /// <summary>
  124. /// 生产厂
  125. /// </summary>
  126. private string factoryCode = "";
  127. /// <summary>
  128. /// 检查站
  129. /// </summary>
  130. private string checkStation = "";
  131. /// <summary>
  132. /// 投料库
  133. /// </summary>
  134. private string inRepository = "";
  135. /// <summary>
  136. /// 产出库
  137. /// </summary>
  138. private string outRepository = "";
  139. /// <summary>
  140. /// 标准流速
  141. /// </summary>
  142. private string velocityFlow = "";
  143. /// <summary>
  144. /// 所属制造商代码
  145. /// </summary>
  146. private string supplyUnitCode = "";
  147. /// <summary>
  148. /// 所属制造商
  149. /// </summary>
  150. private string supplyUnit = "";
  151. /// <summary>
  152. /// 核算中心
  153. /// </summary>
  154. private string accountingCenter = "";
  155. /// <summary>
  156. /// 创建人
  157. /// </summary>
  158. private string createName = "";
  159. /// <summary>
  160. /// 创建时间
  161. /// </summary>
  162. private string createTime = "";
  163. /// <summary>
  164. /// 修改人
  165. /// </summary>
  166. private string updateName = "";
  167. /// <summary>
  168. /// 修改时间
  169. /// </summary>
  170. private string updateTime = "";
  171. /// <summary>
  172. /// 删除人
  173. /// </summary>
  174. private string deleteName = "";
  175. /// <summary>
  176. /// 删除时间
  177. /// </summary>
  178. private string deleteTime = "";
  179. /// <summary>
  180. /// 有效标志(1:有效,0:无效)
  181. /// </summary>
  182. private string validflag = "";
  183. /// <summary>
  184. /// 备注
  185. /// </summary>
  186. private string memo = "";
  187. /// <summary>
  188. /// 同步状态 0未同步 1已同步
  189. /// </summary>
  190. private string syncFlag = "";
  191. /// <summary>
  192. /// 产线代码
  193. /// </summary>
  194. [Description("产线代码")]
  195. [Nullable(false)]
  196. [DataLength(20)]
  197. public string PlineCode
  198. {
  199. get { return plineCode; }
  200. set { plineCode = value; }
  201. }
  202. /// <summary>
  203. /// 产线描述
  204. /// </summary>
  205. [Description("产线描述")]
  206. [Nullable(false)]
  207. [DataLength(100)]
  208. public string PlineName
  209. {
  210. get { return plineName; }
  211. set { plineName = value; }
  212. }
  213. /// <summary>
  214. /// 管理科室代码
  215. /// </summary>
  216. [Description("管理科室代码")]
  217. [Nullable(true)]
  218. [DataLength(20)]
  219. public string DepartmentCode
  220. {
  221. get { return departmentCode; }
  222. set { departmentCode = value; }
  223. }
  224. /// <summary>
  225. /// 管理科室描述
  226. /// </summary>
  227. [Description("管理科室描述")]
  228. [Nullable(true)]
  229. [DataLength(100)]
  230. public string DepartmentDesc
  231. {
  232. get { return departmentDesc; }
  233. set { departmentDesc = value; }
  234. }
  235. /// <summary>
  236. /// 工序代码
  237. /// </summary>
  238. [Description("工序代码")]
  239. [Nullable(true)]
  240. [DataLength(20)]
  241. public string ProcessCode
  242. {
  243. get { return processCode; }
  244. set { processCode = value; }
  245. }
  246. /// <summary>
  247. /// 工序描述
  248. /// </summary>
  249. [Description("工序描述")]
  250. [Nullable(true)]
  251. [DataLength(100)]
  252. public string ProcessDesc
  253. {
  254. get { return processDesc; }
  255. set { processDesc = value; }
  256. }
  257. /// <summary>
  258. /// {老系统}产线代码
  259. /// </summary>
  260. [Description("{老系统}产线代码")]
  261. [Nullable(true)]
  262. [DataLength(20)]
  263. public string PlineCodeOld
  264. {
  265. get { return plineCodeOld; }
  266. set { plineCodeOld = value; }
  267. }
  268. /// <summary>
  269. /// 成品长度下限值
  270. /// </summary>
  271. [Description("成品长度下限值")]
  272. [Nullable(true)]
  273. [DataLength(22)]
  274. public decimal? LengthMin
  275. {
  276. get { return lengthMin; }
  277. set { lengthMin = value; }
  278. }
  279. /// <summary>
  280. /// 成品长度上限值
  281. /// </summary>
  282. [Description("成品长度上限值")]
  283. [Nullable(true)]
  284. [DataLength(22)]
  285. public decimal? LengthMax
  286. {
  287. get { return lengthMax; }
  288. set { lengthMax = value; }
  289. }
  290. /// <summary>
  291. /// 冷床长度(最大值)--轧管工序
  292. /// </summary>
  293. [Description("冷床长度(最大值)--轧管工序")]
  294. [Nullable(true)]
  295. [DataLength(22)]
  296. public decimal? LengthColdbed
  297. {
  298. get { return lengthColdbed; }
  299. set { lengthColdbed = value; }
  300. }
  301. /// <summary>
  302. /// 环型炉长度上限值--轧管工序
  303. /// </summary>
  304. [Description("环型炉长度上限值--轧管工序")]
  305. [Nullable(true)]
  306. [DataLength(22)]
  307. public decimal? LengthMaxRing
  308. {
  309. get { return lengthMaxRing; }
  310. set { lengthMaxRing = value; }
  311. }
  312. /// <summary>
  313. /// 环型炉长度下限值--轧管工序
  314. /// </summary>
  315. [Description("环型炉长度下限值--轧管工序")]
  316. [Nullable(true)]
  317. [DataLength(22)]
  318. public decimal? LengthMinRing
  319. {
  320. get { return lengthMinRing; }
  321. set { lengthMinRing = value; }
  322. }
  323. /// <summary>
  324. /// 脱管机长度下限值--轧管工序
  325. /// </summary>
  326. [Description("脱管机长度下限值--轧管工序")]
  327. [Nullable(true)]
  328. [DataLength(22)]
  329. public decimal? LengthMinTube
  330. {
  331. get { return lengthMinTube; }
  332. set { lengthMinTube = value; }
  333. }
  334. /// <summary>
  335. /// 脱管机长度上限值--轧管工序
  336. /// </summary>
  337. [Description("脱管机长度上限值--轧管工序")]
  338. [Nullable(true)]
  339. [DataLength(22)]
  340. public decimal? LengthMaxTube
  341. {
  342. get { return lengthMaxTube; }
  343. set { lengthMaxTube = value; }
  344. }
  345. /// <summary>
  346. /// 烧损率(%)--轧管工序
  347. /// </summary>
  348. [Description("烧损率(%)--轧管工序")]
  349. [Nullable(true)]
  350. [DataLength(22)]
  351. public decimal? BurnoutRate
  352. {
  353. get { return burnoutRate; }
  354. set { burnoutRate = value; }
  355. }
  356. /// <summary>
  357. /// 计划分组
  358. /// </summary>
  359. [Description("计划分组")]
  360. [Nullable(true)]
  361. [DataLength(20)]
  362. public string GroupPlan
  363. {
  364. get { return groupPlan; }
  365. set { groupPlan = value; }
  366. }
  367. /// <summary>
  368. /// 缴库分组
  369. /// </summary>
  370. [Description("缴库分组")]
  371. [Nullable(true)]
  372. [DataLength(20)]
  373. public string GroupPay
  374. {
  375. get { return groupPay; }
  376. set { groupPay = value; }
  377. }
  378. /// <summary>
  379. /// 机组壁厚公差带能力%
  380. /// </summary>
  381. [Description("机组壁厚公差带能力%")]
  382. [Nullable(true)]
  383. [DataLength(3)]
  384. public decimal? ToleranceZone
  385. {
  386. get { return toleranceZone; }
  387. set { toleranceZone = value; }
  388. }
  389. /// <summary>
  390. /// 管理部门代码
  391. /// </summary>
  392. [Description("管理部门代码")]
  393. [Nullable(true)]
  394. [DataLength(20)]
  395. public string DepartmentCodeP
  396. {
  397. get { return departmentCodeP; }
  398. set { departmentCodeP = value; }
  399. }
  400. /// <summary>
  401. /// 管理部门描述
  402. /// </summary>
  403. [Description("管理部门描述")]
  404. [Nullable(true)]
  405. [DataLength(100)]
  406. public string DepartmentDescP
  407. {
  408. get { return departmentDescP; }
  409. set { departmentDescP = value; }
  410. }
  411. /// <summary>
  412. /// 排产缩写码(计划专用)
  413. /// </summary>
  414. [Description("排产缩写码(计划专用)")]
  415. [Nullable(true)]
  416. [DataLength(10)]
  417. public string ScheduleCode
  418. {
  419. get { return scheduleCode; }
  420. set { scheduleCode = value; }
  421. }
  422. /// <summary>
  423. /// 产线标识符(试样号字母标识)
  424. /// </summary>
  425. [Description("产线标识符(试样号字母标识)")]
  426. [Nullable(true)]
  427. [DataLength(1)]
  428. public string SplineDesc
  429. {
  430. get { return splineDesc; }
  431. set { splineDesc = value; }
  432. }
  433. /// <summary>
  434. /// 来料长度下限
  435. /// </summary>
  436. [Description("来料长度下限")]
  437. [Nullable(true)]
  438. [DataLength(7)]
  439. public decimal? InMaterialLenMin
  440. {
  441. get { return inMaterialLenMin; }
  442. set { inMaterialLenMin = value; }
  443. }
  444. /// <summary>
  445. /// 来料长度上限
  446. /// </summary>
  447. [Description("来料长度上限")]
  448. [Nullable(true)]
  449. [DataLength(7)]
  450. public decimal? InMaterialLenMax
  451. {
  452. get { return inMaterialLenMax; }
  453. set { inMaterialLenMax = value; }
  454. }
  455. /// <summary>
  456. /// 性能批号产线标识
  457. /// </summary>
  458. [Description("性能批号产线标识")]
  459. [Nullable(true)]
  460. [DataLength(4)]
  461. public string SamFcode
  462. {
  463. get { return samFcode; }
  464. set { samFcode = value; }
  465. }
  466. /// <summary>
  467. /// 批号规则区间(0-12;35-56)
  468. /// </summary>
  469. [Description("批号规则区间(0-12;35-56)")]
  470. [Nullable(true)]
  471. [DataLength(100)]
  472. public string BatchInterval
  473. {
  474. get { return batchInterval; }
  475. set { batchInterval = value; }
  476. }
  477. /// <summary>
  478. /// 检验委托号缩写
  479. /// </summary>
  480. [Description("检验委托号缩写")]
  481. [Nullable(true)]
  482. [DataLength(2)]
  483. public string CheckNoShort
  484. {
  485. get { return checkNoShort; }
  486. set { checkNoShort = value; }
  487. }
  488. /// <summary>
  489. /// 生产厂
  490. /// </summary>
  491. [Description("生产厂")]
  492. [Nullable(true)]
  493. [DataLength(20)]
  494. public string FactoryCode
  495. {
  496. get { return factoryCode; }
  497. set { factoryCode = value; }
  498. }
  499. /// <summary>
  500. /// 检查站
  501. /// </summary>
  502. [Description("检查站")]
  503. [Nullable(true)]
  504. [DataLength(20)]
  505. public string CheckStation
  506. {
  507. get { return checkStation; }
  508. set { checkStation = value; }
  509. }
  510. /// <summary>
  511. /// 投料库
  512. /// </summary>
  513. [Description("投料库")]
  514. [Nullable(true)]
  515. [DataLength(5)]
  516. public string InRepository
  517. {
  518. get { return inRepository; }
  519. set { inRepository = value; }
  520. }
  521. /// <summary>
  522. /// 产出库
  523. /// </summary>
  524. [Description("产出库 ")]
  525. [Nullable(true)]
  526. [DataLength(5)]
  527. public string OutRepository
  528. {
  529. get { return outRepository; }
  530. set { outRepository = value; }
  531. }
  532. /// <summary>
  533. /// 标准流速
  534. /// </summary>
  535. [Description("标准流速")]
  536. [Nullable(true)]
  537. [DataLength(10)]
  538. public string VelocityFlow
  539. {
  540. get { return velocityFlow; }
  541. set { velocityFlow = value; }
  542. }
  543. /// <summary>
  544. /// 所属制造商代码
  545. /// </summary>
  546. [Description("所属制造商代码")]
  547. [Nullable(true)]
  548. [DataLength(20)]
  549. public string SupplyUnitCode
  550. {
  551. get { return supplyUnitCode; }
  552. set { supplyUnitCode = value; }
  553. }
  554. /// <summary>
  555. /// 所属制造商
  556. /// </summary>
  557. [Description("所属制造商")]
  558. [Nullable(true)]
  559. [DataLength(20)]
  560. public string SupplyUnit
  561. {
  562. get { return supplyUnit; }
  563. set { supplyUnit = value; }
  564. }
  565. /// <summary>
  566. /// 核算中心
  567. /// </summary>
  568. [Description("核算中心")]
  569. [Nullable(true)]
  570. [DataLength(20)]
  571. public string AccountingCenter
  572. {
  573. get { return accountingCenter; }
  574. set { accountingCenter = value; }
  575. }
  576. /// <summary>
  577. /// 创建人
  578. /// </summary>
  579. [Description("创建人")]
  580. [Nullable(true)]
  581. [DataLength(20)]
  582. public string CreateName
  583. {
  584. get { return createName; }
  585. set { createName = value; }
  586. }
  587. /// <summary>
  588. /// 创建时间
  589. /// </summary>
  590. [Description("创建时间")]
  591. [Nullable(true)]
  592. public string CreateTime
  593. {
  594. get { return createTime; }
  595. set { createTime = value; }
  596. }
  597. /// <summary>
  598. /// 修改人
  599. /// </summary>
  600. [Description("修改人")]
  601. [Nullable(true)]
  602. [DataLength(20)]
  603. public string UpdateName
  604. {
  605. get { return updateName; }
  606. set { updateName = value; }
  607. }
  608. /// <summary>
  609. /// 修改时间
  610. /// </summary>
  611. [Description("修改时间")]
  612. [Nullable(true)]
  613. public string UpdateTime
  614. {
  615. get { return updateTime; }
  616. set { updateTime = value; }
  617. }
  618. /// <summary>
  619. /// 删除人
  620. /// </summary>
  621. [Description("删除人")]
  622. [Nullable(true)]
  623. [DataLength(20)]
  624. public string DeleteName
  625. {
  626. get { return deleteName; }
  627. set { deleteName = value; }
  628. }
  629. /// <summary>
  630. /// 删除时间
  631. /// </summary>
  632. [Description("删除时间")]
  633. [Nullable(true)]
  634. public string DeleteTime
  635. {
  636. get { return deleteTime; }
  637. set { deleteTime = value; }
  638. }
  639. /// <summary>
  640. /// 有效标志(1:有效,0:无效)
  641. /// </summary>
  642. [Description("有效标志(1:有效,0:无效)")]
  643. [Nullable(false)]
  644. [DataLength(1)]
  645. public string Validflag
  646. {
  647. get { return validflag; }
  648. set { validflag = value; }
  649. }
  650. /// <summary>
  651. /// 备注
  652. /// </summary>
  653. [Description("备注")]
  654. [Nullable(true)]
  655. [DataLength(200)]
  656. public string Memo
  657. {
  658. get { return memo; }
  659. set { memo = value; }
  660. }
  661. /// <summary>
  662. /// 同步状态 0未同步 1已同步
  663. /// </summary>
  664. [Description("同步状态 0未同步 1已同步")]
  665. [Nullable(true)]
  666. [DataLength(1)]
  667. public string SyncFlag
  668. {
  669. get { return syncFlag; }
  670. set { syncFlag = value; }
  671. }
  672. }
  673. }