ChoiceCraftFileLv2Entity.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Security.Policy;
  6. using System.Text;
  7. namespace Core.StlMes.Client.SaleOrder
  8. {
  9. public class ChoiceCraftFileLv2Entity : CraftOrdDesignEntity
  10. {
  11. private string plineName = "";
  12. /// <summary>
  13. /// 机组
  14. /// </summary>
  15. [Description("机组")]
  16. public string PlineName
  17. {
  18. get { return plineName; }
  19. set { plineName = value; }
  20. }
  21. private string exeStatus = "";
  22. /// <summary>
  23. /// 执行状态
  24. /// </summary>
  25. [Description("执行状态")]
  26. public string ExeStatus
  27. {
  28. get { return exeStatus; }
  29. set { exeStatus = value; }
  30. }
  31. private string unfinishTime = "";
  32. /// <summary>
  33. /// 炼轧未完成时间
  34. /// </summary>
  35. [Description("炼轧未完成时间")]
  36. public string UnfinishTime
  37. {
  38. get { return unfinishTime; }
  39. set { unfinishTime = value; }
  40. }
  41. private string proPlanId = "";
  42. /// <summary>
  43. /// 轧管订单号
  44. /// </summary>
  45. [Description("轧管订单号")]
  46. public string ProPlanId
  47. {
  48. get { return proPlanId; }
  49. set { proPlanId = value; }
  50. }
  51. private string gxPlanNo = "";
  52. /// <summary>
  53. /// 排产序号
  54. /// </summary>
  55. [Description("排产序号")]
  56. public string GxPlanNo
  57. {
  58. get { return gxPlanNo; }
  59. set { gxPlanNo = value; }
  60. }
  61. private string pscDesc = "";
  62. [Description("订货产品描述")]
  63. public string PscDesc
  64. {
  65. get { return pscDesc; }
  66. set { pscDesc = value; }
  67. }
  68. private string dimater = "";
  69. [Description("外径")]
  70. public string Dimater
  71. {
  72. get { return dimater; }
  73. set { dimater = value; }
  74. }
  75. private string height = "";
  76. [Description("壁厚")]
  77. public string Height
  78. {
  79. get { return height; }
  80. set { height = value; }
  81. }
  82. private string specName = "";
  83. [Description("产品规格")]
  84. public string SpecName
  85. {
  86. get { return specName; }
  87. set { specName = value; }
  88. }
  89. private string orderSpecDesc = "";
  90. [Description("订货规格")]
  91. public string OrderSpecDesc
  92. {
  93. get { return orderSpecDesc; }
  94. set { orderSpecDesc = value; }
  95. }
  96. private string modelDesc = "";
  97. [Description("扣型描述")]
  98. public string ModelDesc
  99. {
  100. get { return modelDesc; }
  101. set { modelDesc = value; }
  102. }
  103. private string orderSpecialDesc = "";
  104. [Description("产品特殊要求")]
  105. public string OrderSpecialDesc
  106. {
  107. get { return orderSpecialDesc; }
  108. set { orderSpecialDesc = value; }
  109. }
  110. private string descriptionDiff = "";
  111. [Description("合同附加项A")]
  112. public string DescriptionDiff
  113. {
  114. get { return descriptionDiff; }
  115. set { descriptionDiff = value; }
  116. }
  117. private string descriptionAll = "";
  118. [Description("合同附加项")]
  119. public string DescriptionAll
  120. {
  121. get { return descriptionAll; }
  122. set { descriptionAll = value; }
  123. }
  124. private string chgeVal = "";
  125. [Description("合同变更内控")]
  126. public string ChgeVal
  127. {
  128. get { return chgeVal; }
  129. set { chgeVal = value; }
  130. }
  131. private string lenDesc = "";
  132. [Description("长度描述")]
  133. public string LenDesc
  134. {
  135. get { return lenDesc; }
  136. set { lenDesc = value; }
  137. }
  138. private string finalUserDesc = "";
  139. [Description("最终用户描述")]
  140. public string FinalUserDesc
  141. {
  142. get { return finalUserDesc; }
  143. set { finalUserDesc = value; }
  144. }
  145. private string manInspection = "";
  146. [Description("机探盲区")]
  147. public string ManInspection
  148. {
  149. get { return manInspection; }
  150. set { manInspection = value; }
  151. }
  152. private string inspectionValue = "";
  153. [Description("机探盲区切长")]
  154. public string InspectionValue
  155. {
  156. get { return inspectionValue; }
  157. set { inspectionValue = value; }
  158. }
  159. private string outsBilletFl = "";
  160. [Description("外购坯")]
  161. public string OutsBilletFl
  162. {
  163. get { return outsBilletFl; }
  164. set { outsBilletFl = value; }
  165. }
  166. private string outsStlPipeFl = "";
  167. [Description("外购管")]
  168. public string OutsStlPipeFl
  169. {
  170. get { return outsStlPipeFl; }
  171. set { outsStlPipeFl = value; }
  172. }
  173. private string asselFl = "";
  174. [Description("ASSEL")]
  175. public string AsselFl
  176. {
  177. get { return asselFl; }
  178. set { asselFl = value; }
  179. }
  180. private string producerFl = "";
  181. [Description("监制")]
  182. public string ProducerFl
  183. {
  184. get { return producerFl; }
  185. set { producerFl = value; }
  186. }
  187. private string planTimeBZg = "";
  188. [Description("轧制开始时间")]
  189. public string PlanTimeBZg
  190. {
  191. get { return planTimeBZg; }
  192. set { planTimeBZg = value; }
  193. }
  194. private string planTimeBDbk = "";
  195. [Description("镦拔扩开始时间")]
  196. public string PlanTimeBDbk
  197. {
  198. get { return planTimeBDbk; }
  199. set { planTimeBDbk = value; }
  200. }
  201. private string planTimeBRcl = "";
  202. [Description("热处理开始时间")]
  203. public string PlanTimeBRcl
  204. {
  205. get { return planTimeBRcl; }
  206. set { planTimeBRcl = value; }
  207. }
  208. private string planTimeBJgx = "";
  209. [Description("加工开始时间")]
  210. public string PlanTimeBJgx
  211. {
  212. get { return planTimeBJgx; }
  213. set { planTimeBJgx = value; }
  214. }
  215. private string planTImeBProp = "";
  216. [Description("接箍加工开始时间")]
  217. public string PlanTImeBProp
  218. {
  219. get { return planTImeBProp; }
  220. set { planTImeBProp = value; }
  221. }
  222. private string modelCode = "";
  223. [Description("扣型代码")]
  224. public string ModelCode
  225. {
  226. get { return modelCode; }
  227. set { modelCode = value; }
  228. }
  229. private string ordLnDlyPk = "";
  230. public string OrdLnDlyPk
  231. {
  232. get { return ordLnDlyPk; }
  233. set { ordLnDlyPk = value; }
  234. }
  235. private string plnDivideId = "";
  236. public string PlnDivideId
  237. {
  238. get { return plnDivideId; }
  239. set { plnDivideId = value; }
  240. }
  241. private string producname = "";
  242. [Description("品名")]
  243. public string Producname
  244. {
  245. get { return producname; }
  246. set { producname = value; }
  247. }
  248. private string stdStyleDesc = "";
  249. [Description("标准类别")]
  250. public string StdStyleDesc
  251. {
  252. get { return stdStyleDesc; }
  253. set { stdStyleDesc = value; }
  254. }
  255. private string steelname = "";
  256. [Description("钢级")]
  257. public string Steelname
  258. {
  259. get { return steelname; }
  260. set { steelname = value; }
  261. }
  262. private string stdName = "";
  263. [Description("标准名称")]
  264. public string StdName
  265. {
  266. get { return stdName; }
  267. set { stdName = value; }
  268. }
  269. private string isendgx = "";
  270. [Description("是否末工序")]
  271. public string Isendgx
  272. {
  273. get { return isendgx; }
  274. set { isendgx = value; }
  275. }
  276. private string gxProSeq = "";
  277. [Description("生产顺序")]
  278. public string GxProSeq
  279. {
  280. get { return gxProSeq; }
  281. set { gxProSeq = value; }
  282. }
  283. private string mscPline = "";
  284. /// <summary>
  285. /// 制程号
  286. /// </summary>
  287. [Description("制程号")]
  288. public string MscPline
  289. {
  290. get { return mscPline; }
  291. set { mscPline = value; }
  292. }
  293. private string wholeBacklogDesc = "";
  294. /// <summary>
  295. /// 全程途径描述
  296. /// </summary>
  297. [Description("全程途径描述")]
  298. public string WholeBacklogDesc
  299. {
  300. get { return wholeBacklogDesc; }
  301. set { wholeBacklogDesc = value; }
  302. }
  303. private string cic = "";
  304. /// <summary>
  305. /// 成分索引码
  306. /// </summary>
  307. [Description("成分索引码CIC")]
  308. public string Cic
  309. {
  310. get { return cic; }
  311. set { cic = value; }
  312. }
  313. private string pic = "";
  314. /// <summary>
  315. /// 理化索引号
  316. /// </summary>
  317. [Description("理化索引号PIC")]
  318. public string Pic
  319. {
  320. get { return pic; }
  321. set { pic = value; }
  322. }
  323. private string sic = "";
  324. /// <summary>
  325. /// 公差索引号
  326. /// </summary>
  327. [Description("公差索引号SIC")]
  328. public string Sic
  329. {
  330. get { return sic; }
  331. set { sic = value; }
  332. }
  333. private string dic = "";
  334. /// <summary>
  335. /// 探伤索引号
  336. /// </summary>
  337. [Description("探伤索引号DIC")]
  338. public string Dic
  339. {
  340. get { return dic; }
  341. set { dic = value; }
  342. }
  343. private string wic = "";
  344. /// <summary>
  345. /// 水压索引号
  346. /// </summary>
  347. [Description("水压索引号WIC")]
  348. public string Wic
  349. {
  350. get { return wic; }
  351. set { wic = value; }
  352. }
  353. private string gic = "";
  354. /// <summary>
  355. /// 加工索引号
  356. /// </summary>
  357. [Description("加工索引号GIC")]
  358. public string Gic
  359. {
  360. get { return gic; }
  361. set { gic = value; }
  362. }
  363. [Description("检验计划确认")]
  364. public string FlagDStr
  365. {
  366. get { return (FlagD??false)?"是":"/"; }
  367. }
  368. [Description("检验计划确认")]
  369. public string FlagEStr
  370. {
  371. get { return (FlagE ?? false) ? "是" : "/"; }
  372. }
  373. [Description("检验计划确认")]
  374. public string FlagFStr
  375. {
  376. get { return (FlagF ?? false) ? "是" : "/"; }
  377. }
  378. [Description("检验计划确认")]
  379. public string FlagGStr
  380. {
  381. get { return (FlagG ?? false) ? "是" : "/"; }
  382. }
  383. [Description("检验计划确认")]
  384. public string FlagHStr
  385. {
  386. get { return (FlagH ?? false) ? "是" : "/"; }
  387. }
  388. [Description("计划科委托")]
  389. public string FlagJhdStr
  390. {
  391. get { return (FlagJhd ?? false) ? "是" : "/"; }
  392. }
  393. private string decision = "";
  394. /// <summary>
  395. /// DECISION
  396. /// </summary>
  397. [Description("判定字头")]
  398. public string Decision
  399. {
  400. get { return decision; }
  401. set { decision = value; }
  402. }
  403. private decimal? cutNum ;
  404. /// <summary>
  405. /// DECISION
  406. /// </summary>
  407. [Description("分切数")]
  408. public decimal? CutNum
  409. {
  410. get { return cutNum; }
  411. set { cutNum = value; }
  412. }
  413. private string processName ;
  414. /// <summary>
  415. /// ProcessName
  416. /// </summary>
  417. [Description("工艺负责人")]
  418. public string ProcessName
  419. {
  420. get { return processName; }
  421. set { processName = value; }
  422. }
  423. }
  424. }