QcmZgJugdeApplyEntity.cs 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526
  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.Mcp.Entity
  8. {
  9. /// <summary>
  10. /// 数据库表QCM_ZG_JUGDE_APPLY所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:MS-20181101OWOO 时间:2018-12-06
  12. /// </summary>
  13. public class QcmZgJugdeApplyEntity
  14. {
  15. /// <summary>
  16. /// 申请判定单号
  17. /// </summary>
  18. private string jugdeApplyCode = "";
  19. /// <summary>
  20. /// 炉号
  21. /// </summary>
  22. private string judgeStoveNo = "";
  23. /// <summary>
  24. /// 批号
  25. /// </summary>
  26. private string batchNo = "";
  27. /// <summary>
  28. /// 组号
  29. /// </summary>
  30. private string batchGroudNo = "";
  31. /// <summary>
  32. /// 工序代码(A\B\C\D.....)
  33. /// </summary>
  34. private string processCode = "";
  35. /// <summary>
  36. /// 产线代码
  37. /// </summary>
  38. private string plineCode = "";
  39. /// <summary>
  40. /// 支数
  41. /// </summary>
  42. private decimal? actCount = null;
  43. /// <summary>
  44. /// 实重
  45. /// </summary>
  46. private decimal? actWeight = null;
  47. /// <summary>
  48. /// 理论重量
  49. /// </summary>
  50. private decimal? actTheoryWeight = null;
  51. /// <summary>
  52. /// 申请判定生产订单号(工序排产订单号)
  53. /// </summary>
  54. private string proOrderId = "";
  55. /// <summary>
  56. /// 表面结果代码
  57. /// </summary>
  58. private string faceResultCode = "";
  59. /// <summary>
  60. /// 公差结果代码
  61. /// </summary>
  62. private string specResultCode = "";
  63. /// <summary>
  64. /// 成分结果代码
  65. /// </summary>
  66. private string chemResultCode = "";
  67. /// <summary>
  68. /// 理化结果代码
  69. /// </summary>
  70. private string phyResultCode = "";
  71. /// <summary>
  72. /// 探伤结果代码
  73. /// </summary>
  74. private string detectResultCode = "";
  75. /// <summary>
  76. /// 水压结果代码
  77. /// </summary>
  78. private string wpressureResultCode = "";
  79. /// <summary>
  80. /// 加工结果代码
  81. /// </summary>
  82. private string processResultCode = "";
  83. /// <summary>
  84. /// 表面检验报告目录
  85. /// </summary>
  86. private string faceResultPath = "";
  87. /// <summary>
  88. /// 公差检验报告目录
  89. /// </summary>
  90. private string specResultPath = "";
  91. /// <summary>
  92. /// 成分检验报告目录
  93. /// </summary>
  94. private string chemResultPath = "";
  95. /// <summary>
  96. /// 理化检验报告目录
  97. /// </summary>
  98. private string phyResultPath = "";
  99. /// <summary>
  100. /// 探伤检验报告目录
  101. /// </summary>
  102. private string detectResultPath = "";
  103. /// <summary>
  104. /// 水压检验报告目录
  105. /// </summary>
  106. private string wpressureResultPath = "";
  107. /// <summary>
  108. /// 加工检验报告目录
  109. /// </summary>
  110. private string processResultPath = "";
  111. /// <summary>
  112. /// 状态(00:初使状态;10:判定后退判;20:已判定;15已接收 50无效)
  113. /// </summary>
  114. private string validflag = "";
  115. /// <summary>
  116. /// 申判人
  117. /// </summary>
  118. private string applyName = "";
  119. /// <summary>
  120. /// 申判时间
  121. /// </summary>
  122. private string applyTime = "";
  123. /// <summary>
  124. /// 申请判定备注(管捆信息)
  125. /// </summary>
  126. private string memo = "";
  127. /// <summary>
  128. /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
  129. /// </summary>
  130. private decimal? qualityGroup = null;
  131. /// <summary>
  132. /// 产出物料码
  133. /// </summary>
  134. private string materialNo = "";
  135. /// <summary>
  136. /// 产出物料描叙
  137. /// </summary>
  138. private string materialName = "";
  139. /// <summary>
  140. /// 品名代码
  141. /// </summary>
  142. private string produccode = "";
  143. /// <summary>
  144. /// 品名描述
  145. /// </summary>
  146. private string producname = "";
  147. /// <summary>
  148. /// 钢级(牌号)代码
  149. /// </summary>
  150. private string steelcode = "";
  151. /// <summary>
  152. /// 钢级(牌号)名称
  153. /// </summary>
  154. private string steelname = "";
  155. /// <summary>
  156. /// 钢种代码
  157. /// </summary>
  158. private string gradecode = "";
  159. /// <summary>
  160. /// 钢种名称
  161. /// </summary>
  162. private string gradename = "";
  163. /// <summary>
  164. /// 产品规格代码
  165. /// </summary>
  166. private string specCode = "";
  167. /// <summary>
  168. /// 产品规格描述
  169. /// </summary>
  170. private string specName = "";
  171. /// <summary>
  172. /// 扣型代码
  173. /// </summary>
  174. private string modelCode = "";
  175. /// <summary>
  176. /// 扣型描述
  177. /// </summary>
  178. private string modelDesc = "";
  179. /// <summary>
  180. /// 标准代码
  181. /// </summary>
  182. private string stdCode = "";
  183. /// <summary>
  184. /// 标准名称
  185. /// </summary>
  186. private string stdName = "";
  187. /// <summary>
  188. /// 标准类别代码
  189. /// </summary>
  190. private string stdStyle = "";
  191. /// <summary>
  192. /// 标准类别描述(PSL1....)
  193. /// </summary>
  194. private string stdStyleDesc = "";
  195. /// <summary>
  196. /// 工艺文件号
  197. /// </summary>
  198. private string crafNo = "";
  199. /// <summary>
  200. /// 生产批号
  201. /// </summary>
  202. private string lotNo = "";
  203. /// <summary>
  204. /// 生产产线名称
  205. /// </summary>
  206. private string plineName = "";
  207. /// <summary>
  208. /// 生产合同号(合同号)
  209. /// </summary>
  210. private string proOrderNo = "";
  211. /// <summary>
  212. /// 产品标识(ABC)
  213. /// </summary>
  214. private string target = "";
  215. /// <summary>
  216. /// 工艺状态(轧态)
  217. /// </summary>
  218. private string processStatus = "";
  219. /// <summary>
  220. /// 材料去向代码
  221. /// </summary>
  222. private string matGowhereCode = "";
  223. /// <summary>
  224. /// 材料去向
  225. /// </summary>
  226. private string matGowhereName = "";
  227. /// <summary>
  228. /// 外径(实际)
  229. /// </summary>
  230. private decimal? actDimater = null;
  231. /// <summary>
  232. /// 壁厚(实际)
  233. /// </summary>
  234. private decimal? actHeight = null;
  235. /// <summary>
  236. /// 长度下限(实际)
  237. /// </summary>
  238. private string actLenMin = "";
  239. /// <summary>
  240. /// 长度上限(实际)
  241. /// </summary>
  242. private string actLenMax = "";
  243. /// <summary>
  244. /// 工序判定结果代码
  245. /// </summary>
  246. private string judgeResultCode = "";
  247. /// <summary>
  248. /// 工序判定结果
  249. /// </summary>
  250. private string judgeResult = "";
  251. /// <summary>
  252. /// 工序判定时间
  253. /// </summary>
  254. private string judgeResultTime = "";
  255. /// <summary>
  256. /// 工序判定人
  257. /// </summary>
  258. private string judgeMaker = "";
  259. /// <summary>
  260. /// 是否已处理后工序炉计划
  261. /// </summary>
  262. private string ifSetZyPlan = "";
  263. /// <summary>
  264. /// 探伤等级
  265. /// </summary>
  266. private string testingGrade = "";
  267. /// <summary>
  268. /// 探伤种类
  269. /// </summary>
  270. private string testingType = "";
  271. /// <summary>
  272. /// 探伤等级1
  273. /// </summary>
  274. private string testingGrade1 = "";
  275. /// <summary>
  276. /// 探伤种类1
  277. /// </summary>
  278. private string testingType1 = "";
  279. /// <summary>
  280. /// 探伤结果代码1
  281. /// </summary>
  282. private string detectResultCode1 = "";
  283. /// <summary>
  284. /// 探伤检验报告目录1
  285. /// </summary>
  286. private string detectResultPath1 = "";
  287. /// <summary>
  288. /// 交货行主键
  289. /// </summary>
  290. private string ordLnDlyPk = "";
  291. /// <summary>
  292. /// 送判状态 (0 正常送判,1退判 (判定后),2退判(判定前))
  293. /// </summary>
  294. private string applyFlag = "";
  295. /// <summary>
  296. /// 退判原因
  297. /// </summary>
  298. private string backJugdeMemo = "";
  299. /// <summary>
  300. /// 缴库标志(1是、0否)
  301. /// </summary>
  302. private string instockFlag = "";
  303. /// <summary>
  304. /// 所属权单位代码
  305. /// </summary>
  306. private string belongCode = "";
  307. /// <summary>
  308. /// 所属权单位
  309. /// </summary>
  310. private string belongName = "";
  311. /// <summary>
  312. /// 是否末工序(末工序时合同成品属性有效)
  313. /// </summary>
  314. private string isendgx = "";
  315. /// <summary>
  316. /// 终轧温度
  317. /// </summary>
  318. private decimal? exitTemp = null;
  319. /// <summary>
  320. /// 样管信息
  321. /// </summary>
  322. private string sampleNews = "";
  323. /// <summary>
  324. /// 长度(实际)
  325. /// </summary>
  326. private decimal? actLen = null;
  327. /// <summary>
  328. /// 所属权单位代码(判定后)
  329. /// </summary>
  330. private string belongCodeJugde = "";
  331. /// <summary>
  332. /// 所属权单位(判定后)
  333. /// </summary>
  334. private string belongNameJugde = "";
  335. /// <summary>
  336. /// 工序排产序号
  337. /// </summary>
  338. private string gxPlanNo = "";
  339. /// <summary>
  340. /// 投料量
  341. /// </summary>
  342. private decimal? inputWeight = null;
  343. /// <summary>
  344. /// 投料支数(单倍坯)
  345. /// </summary>
  346. private decimal? inputCount = null;
  347. /// <summary>
  348. /// 判定吨(原料)+废品吨(单倍坯) (出)
  349. /// </summary>
  350. private decimal? outputWeight = null;
  351. /// <summary>
  352. /// 判定支(原料)+废品支(单倍坯)
  353. /// </summary>
  354. private decimal? outputCount = null;
  355. /// <summary>
  356. /// 结转年月
  357. /// </summary>
  358. private string balYearMonth = "";
  359. /// <summary>
  360. /// 是否有效(0 有效 1 无效)
  361. /// </summary>
  362. private string isFlag = "";
  363. /// <summary>
  364. /// 判定类型(0,正常 1整炉废 2白条 3红冲)
  365. /// </summary>
  366. private string isAllScrap = "";
  367. /// <summary>
  368. /// 是否结转(0 未结转 1结转)
  369. /// </summary>
  370. private string isCarryVoer = "";
  371. /// <summary>
  372. /// 熔炼炉号
  373. /// </summary>
  374. private string stoveNo = "";
  375. /// <summary>
  376. /// 轧管判定标准(技术标准)
  377. /// </summary>
  378. private string steelStandrad = "";
  379. /// <summary>
  380. /// 订单编号(下一工序订单)
  381. /// </summary>
  382. private string proPlanIdNext = "";
  383. /// <summary>
  384. /// 工序排产序号
  385. /// </summary>
  386. private string gxPlanNoNext = "";
  387. /// <summary>
  388. /// 利库标识(0,正常,1,利库)
  389. /// </summary>
  390. private string lkFlag = "";
  391. /// <summary>
  392. /// 工序判定备注
  393. /// </summary>
  394. private string judgeMemo = "";
  395. /// <summary>
  396. /// 工序判定班次
  397. /// </summary>
  398. private string judgeOrder = "";
  399. /// <summary>
  400. /// 工序判定班组
  401. /// </summary>
  402. private string judgeGroup = "";
  403. /// <summary>
  404. /// 判定炉号(带序号)
  405. /// </summary>
  406. private string judgeStoveNoSeq = "";
  407. /// <summary>
  408. /// 下工序代码
  409. /// </summary>
  410. private string nextProcessCdoe = "";
  411. /// <summary>
  412. /// 申请判定顺序号
  413. /// </summary>
  414. private string jugdeApplySequeno = "";
  415. /// <summary>
  416. /// 工序不合格处置方式
  417. /// </summary>
  418. private string auditResult = "";
  419. /// <summary>
  420. /// 工序不合格处置备注
  421. /// </summary>
  422. private string auditMemo = "";
  423. /// <summary>
  424. /// 综合判定结果代码
  425. /// </summary>
  426. private string judgeTolresultCode = "";
  427. /// <summary>
  428. /// 综合判定结果
  429. /// </summary>
  430. private string judgeTolresult = "";
  431. /// <summary>
  432. /// 综合判定时间
  433. /// </summary>
  434. private string judgeTolresultTime = "";
  435. /// <summary>
  436. /// 综合判定人
  437. /// </summary>
  438. private string judgeTolmaker = "";
  439. /// <summary>
  440. /// 综合判定备注
  441. /// </summary>
  442. private string judgeTolmemo = "";
  443. /// <summary>
  444. /// 综合判定班次
  445. /// </summary>
  446. private string judgeTolorder = "";
  447. /// <summary>
  448. /// 综合判定班组
  449. /// </summary>
  450. private string judgeTolgroup = "";
  451. /// <summary>
  452. /// 综合不合格处置方式
  453. /// </summary>
  454. private string auditTolresult = "";
  455. /// <summary>
  456. /// 综合不合格处置备注
  457. /// </summary>
  458. private string auditTolmemo = "";
  459. /// <summary>
  460. /// 工序综合判定单号
  461. /// </summary>
  462. private string jugdeConvicted = "";
  463. /// <summary>
  464. /// 成品综合判定单号
  465. /// </summary>
  466. private string jugdeTolconvicted = "";
  467. /// <summary>
  468. /// 半成品是否紧急放行(0正常,1紧急放行)
  469. /// </summary>
  470. private string instancyFlag = "";
  471. /// <summary>
  472. /// 成品是否紧急放行(0正常,1紧急放行)
  473. /// </summary>
  474. private string tolInstancyFlag = "";
  475. /// <summary>
  476. /// 工艺序号
  477. /// </summary>
  478. private decimal? craftSeq = null;
  479. /// <summary>
  480. /// 主制程索引号
  481. /// </summary>
  482. private string indexSeq = "";
  483. /// <summary>
  484. /// 成分标准索引号(内控)
  485. /// </summary>
  486. private string cic = "";
  487. /// <summary>
  488. /// 材质标准索引号(内控)
  489. /// </summary>
  490. private string pic = "";
  491. /// <summary>
  492. /// 公差标准索引号(内控)
  493. /// </summary>
  494. private string sic = "";
  495. /// <summary>
  496. /// 探伤标准索引号(内控)
  497. /// </summary>
  498. private string dic = "";
  499. /// <summary>
  500. /// 水压标准索引号(内控)
  501. /// </summary>
  502. private string wic = "";
  503. /// <summary>
  504. /// 加工标准索引号(内控)
  505. /// </summary>
  506. private string gic = "";
  507. /// <summary>
  508. /// 下工序炉次计划号
  509. /// </summary>
  510. private string heatPlanNoNext = "";
  511. /// <summary>
  512. /// 检验编号
  513. /// </summary>
  514. private string checkNo = "";
  515. /// <summary>
  516. /// 本工序炉计划ID
  517. /// </summary>
  518. private string heatPlanNo = "";
  519. /// <summary>
  520. /// 交货状态代码(4100)
  521. /// </summary>
  522. private string deliveryStateCode = "";
  523. /// <summary>
  524. /// 交货状态名称
  525. /// </summary>
  526. private string deliveryStateName = "";
  527. /// <summary>
  528. /// 上料炉号
  529. /// </summary>
  530. private string loadJudgeStoveNo = "";
  531. /// <summary>
  532. /// 组批主炉号(炉号+批号)
  533. /// </summary>
  534. private string zpMLh = "";
  535. /// <summary>
  536. /// 组批炉号集合逗号分隔(炉号1+批号1,炉号2+批号2)
  537. /// </summary>
  538. private string zpColl = "";
  539. /// <summary>
  540. /// 热处理状态
  541. /// </summary>
  542. private string httType = "";
  543. /// <summary>
  544. /// 最低回火温度
  545. /// </summary>
  546. private string minTemp = "";
  547. /// <summary>
  548. /// 热处理工艺制度
  549. /// </summary>
  550. private string httTechnology = "";
  551. /// <summary>
  552. /// 样管刻槽信息
  553. /// </summary>
  554. private string notchInfo = "";
  555. /// <summary>
  556. /// 槽长
  557. /// </summary>
  558. private string notchLength = "";
  559. /// <summary>
  560. /// 槽宽
  561. /// </summary>
  562. private string notchWidth = "";
  563. /// <summary>
  564. /// 槽深
  565. /// </summary>
  566. private string notchDepth = "";
  567. /// <summary>
  568. /// 生产批下炉归组
  569. /// </summary>
  570. private string lotNoGroup = "";
  571. /// <summary>
  572. /// 水压压力PSI
  573. /// </summary>
  574. private string testPressure = "";
  575. /// <summary>
  576. /// 保压时间S
  577. /// </summary>
  578. private string holdtimeTime = "";
  579. /// <summary>
  580. /// 水压压力MPA
  581. /// </summary>
  582. private string testPressureY = "";
  583. /// <summary>
  584. /// 加工水压结果
  585. /// </summary>
  586. private string mchWatergageResult = "";
  587. /// <summary>
  588. /// 加工通径结果
  589. /// </summary>
  590. private string mchPathResult = "";
  591. /// <summary>
  592. /// 加工倒棱结果
  593. /// </summary>
  594. private string mchChamferingResult = "";
  595. /// <summary>
  596. /// 加工拧接结果
  597. /// </summary>
  598. private string mchTwistinglyResult = "";
  599. /// <summary>
  600. /// 加工几何尺寸结果
  601. /// </summary>
  602. private string mchDimensionsResult = "";
  603. /// <summary>
  604. /// 加工表面质量结果
  605. /// </summary>
  606. private string mchVisualResult = "";
  607. /// <summary>
  608. /// 加工螺纹检验结果
  609. /// </summary>
  610. private string mchThreadInspectionResult = "";
  611. /// <summary>
  612. /// 加工剩磁结果
  613. /// </summary>
  614. private string mchRemanenceResult = "";
  615. /// <summary>
  616. /// 加工放射性结果
  617. /// </summary>
  618. private string mchRadioactivityResult = "";
  619. /// <summary>
  620. /// 加工坡口结果
  621. /// </summary>
  622. private string mchBevelResult = "";
  623. /// <summary>
  624. /// 坡口角度
  625. /// </summary>
  626. private string angleVal = "";
  627. /// <summary>
  628. /// 钝边
  629. /// </summary>
  630. private string edgeVal = "";
  631. /// <summary>
  632. /// 质保书来源(1,产销出质保书 2,老系统出质保书)
  633. /// </summary>
  634. private string zbsFlag = "";
  635. /// <summary>
  636. /// 探伤标准
  637. /// </summary>
  638. private string testingStandar = "";
  639. /// <summary>
  640. /// 待判原因
  641. /// </summary>
  642. private string waitingDecisionMemo = "";
  643. /// <summary>
  644. /// 申请判定单号
  645. /// </summary>
  646. [Description("申请判定单号")]
  647. [Nullable(false)]
  648. [DataLength(40)]
  649. public string JugdeApplyCode
  650. {
  651. get { return jugdeApplyCode; }
  652. set { jugdeApplyCode = value; }
  653. }
  654. /// <summary>
  655. /// 炉号
  656. /// </summary>
  657. [Description("炉号")]
  658. [Nullable(false)]
  659. [DataLength(6)]
  660. public string JudgeStoveNo
  661. {
  662. get { return judgeStoveNo; }
  663. set { judgeStoveNo = value; }
  664. }
  665. /// <summary>
  666. /// 批号
  667. /// </summary>
  668. [Description("批号")]
  669. [Nullable(false)]
  670. [DataLength(20)]
  671. public string BatchNo
  672. {
  673. get { return batchNo; }
  674. set { batchNo = value; }
  675. }
  676. /// <summary>
  677. /// 组号
  678. /// </summary>
  679. [Description("组号")]
  680. [Nullable(false)]
  681. [DataLength(3)]
  682. public string BatchGroudNo
  683. {
  684. get { return batchGroudNo; }
  685. set { batchGroudNo = value; }
  686. }
  687. /// <summary>
  688. /// 工序代码(A\B\C\D.....)
  689. /// </summary>
  690. [Description("工序代码")]
  691. [Nullable(true)]
  692. [DataLength(1)]
  693. public string ProcessCode
  694. {
  695. get { return processCode; }
  696. set { processCode = value; }
  697. }
  698. /// <summary>
  699. /// 产线代码
  700. /// </summary>
  701. [Description("产线代码")]
  702. [Nullable(true)]
  703. [DataLength(20)]
  704. public string PlineCode
  705. {
  706. get { return plineCode; }
  707. set { plineCode = value; }
  708. }
  709. /// <summary>
  710. /// 支数
  711. /// </summary>
  712. [Description("支数")]
  713. [Nullable(true)]
  714. [DataLength(5)]
  715. public decimal? ActCount
  716. {
  717. get { return actCount; }
  718. set { actCount = value; }
  719. }
  720. /// <summary>
  721. /// 实重
  722. /// </summary>
  723. [Description("实重")]
  724. [Nullable(true)]
  725. [DataLength(12)]
  726. public decimal? ActWeight
  727. {
  728. get { return actWeight; }
  729. set { actWeight = value; }
  730. }
  731. /// <summary>
  732. /// 理论重量
  733. /// </summary>
  734. [Description("理论重量")]
  735. [Nullable(true)]
  736. [DataLength(12)]
  737. public decimal? ActTheoryWeight
  738. {
  739. get { return actTheoryWeight; }
  740. set { actTheoryWeight = value; }
  741. }
  742. /// <summary>
  743. /// 申请判定生产订单号(工序排产订单号)
  744. /// </summary>
  745. [Description("申请判定生产订单号")]
  746. [Nullable(true)]
  747. [DataLength(20)]
  748. public string ProOrderId
  749. {
  750. get { return proOrderId; }
  751. set { proOrderId = value; }
  752. }
  753. /// <summary>
  754. /// 表面结果代码
  755. /// </summary>
  756. [Description("表面结果代码")]
  757. [Nullable(true)]
  758. [DataLength(20)]
  759. public string FaceResultCode
  760. {
  761. get { return faceResultCode; }
  762. set { faceResultCode = value; }
  763. }
  764. /// <summary>
  765. /// 公差结果代码
  766. /// </summary>
  767. [Description("公差结果代码")]
  768. [Nullable(true)]
  769. [DataLength(20)]
  770. public string SpecResultCode
  771. {
  772. get { return specResultCode; }
  773. set { specResultCode = value; }
  774. }
  775. /// <summary>
  776. /// 成分结果代码
  777. /// </summary>
  778. [Description("成分结果代码")]
  779. [Nullable(true)]
  780. [DataLength(20)]
  781. public string ChemResultCode
  782. {
  783. get { return chemResultCode; }
  784. set { chemResultCode = value; }
  785. }
  786. /// <summary>
  787. /// 理化结果代码
  788. /// </summary>
  789. [Description("理化结果代码")]
  790. [Nullable(true)]
  791. [DataLength(20)]
  792. public string PhyResultCode
  793. {
  794. get { return phyResultCode; }
  795. set { phyResultCode = value; }
  796. }
  797. /// <summary>
  798. /// 探伤结果代码
  799. /// </summary>
  800. [Description("探伤结果代码")]
  801. [Nullable(true)]
  802. [DataLength(20)]
  803. public string DetectResultCode
  804. {
  805. get { return detectResultCode; }
  806. set { detectResultCode = value; }
  807. }
  808. /// <summary>
  809. /// 水压结果代码
  810. /// </summary>
  811. [Description("水压结果代码")]
  812. [Nullable(true)]
  813. [DataLength(20)]
  814. public string WpressureResultCode
  815. {
  816. get { return wpressureResultCode; }
  817. set { wpressureResultCode = value; }
  818. }
  819. /// <summary>
  820. /// 加工结果代码
  821. /// </summary>
  822. [Description("加工结果代码")]
  823. [Nullable(true)]
  824. [DataLength(20)]
  825. public string ProcessResultCode
  826. {
  827. get { return processResultCode; }
  828. set { processResultCode = value; }
  829. }
  830. /// <summary>
  831. /// 表面检验报告目录
  832. /// </summary>
  833. [Description("表面检验报告目录")]
  834. [Nullable(true)]
  835. [DataLength(200)]
  836. public string FaceResultPath
  837. {
  838. get { return faceResultPath; }
  839. set { faceResultPath = value; }
  840. }
  841. /// <summary>
  842. /// 公差检验报告目录
  843. /// </summary>
  844. [Description("公差检验报告目录")]
  845. [Nullable(true)]
  846. [DataLength(200)]
  847. public string SpecResultPath
  848. {
  849. get { return specResultPath; }
  850. set { specResultPath = value; }
  851. }
  852. /// <summary>
  853. /// 成分检验报告目录
  854. /// </summary>
  855. [Description("成分检验报告目录")]
  856. [Nullable(true)]
  857. [DataLength(200)]
  858. public string ChemResultPath
  859. {
  860. get { return chemResultPath; }
  861. set { chemResultPath = value; }
  862. }
  863. /// <summary>
  864. /// 理化检验报告目录
  865. /// </summary>
  866. [Description("理化检验报告目录")]
  867. [Nullable(true)]
  868. [DataLength(200)]
  869. public string PhyResultPath
  870. {
  871. get { return phyResultPath; }
  872. set { phyResultPath = value; }
  873. }
  874. /// <summary>
  875. /// 探伤检验报告目录
  876. /// </summary>
  877. [Description("探伤检验报告目录")]
  878. [Nullable(true)]
  879. [DataLength(200)]
  880. public string DetectResultPath
  881. {
  882. get { return detectResultPath; }
  883. set { detectResultPath = value; }
  884. }
  885. /// <summary>
  886. /// 水压检验报告目录
  887. /// </summary>
  888. [Description("水压检验报告目录")]
  889. [Nullable(true)]
  890. [DataLength(200)]
  891. public string WpressureResultPath
  892. {
  893. get { return wpressureResultPath; }
  894. set { wpressureResultPath = value; }
  895. }
  896. /// <summary>
  897. /// 加工检验报告目录
  898. /// </summary>
  899. [Description("加工检验报告目录")]
  900. [Nullable(true)]
  901. [DataLength(200)]
  902. public string ProcessResultPath
  903. {
  904. get { return processResultPath; }
  905. set { processResultPath = value; }
  906. }
  907. /// <summary>
  908. /// 状态(00:初使状态;10:判定后退判;20:已判定;15已接收 50无效)
  909. /// </summary>
  910. [Description("状态")]
  911. [Nullable(true)]
  912. [DataLength(2)]
  913. public string Validflag
  914. {
  915. get { return validflag; }
  916. set { validflag = value; }
  917. }
  918. /// <summary>
  919. /// 申判人
  920. /// </summary>
  921. [Description("申判人")]
  922. [Nullable(true)]
  923. [DataLength(20)]
  924. public string ApplyName
  925. {
  926. get { return applyName; }
  927. set { applyName = value; }
  928. }
  929. /// <summary>
  930. /// 申判时间
  931. /// </summary>
  932. [Description("申判时间")]
  933. [Nullable(true)]
  934. public string ApplyTime
  935. {
  936. get { return applyTime; }
  937. set { applyTime = value; }
  938. }
  939. /// <summary>
  940. /// 申请判定备注(管捆信息)
  941. /// </summary>
  942. [Description("申请判定备注(管捆信息)")]
  943. [Nullable(true)]
  944. [DataLength(500)]
  945. public string Memo
  946. {
  947. get { return memo; }
  948. set { memo = value; }
  949. }
  950. /// <summary>
  951. /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
  952. /// </summary>
  953. [Description("质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)")]
  954. [Nullable(false)]
  955. [DataLength(22)]
  956. public decimal? QualityGroup
  957. {
  958. get { return qualityGroup; }
  959. set { qualityGroup = value; }
  960. }
  961. /// <summary>
  962. /// 产出物料码
  963. /// </summary>
  964. [Description("产出物料码")]
  965. [Nullable(true)]
  966. [DataLength(40)]
  967. public string MaterialNo
  968. {
  969. get { return materialNo; }
  970. set { materialNo = value; }
  971. }
  972. /// <summary>
  973. /// 产出物料描叙
  974. /// </summary>
  975. [Description("产出物料描叙")]
  976. [Nullable(true)]
  977. [DataLength(100)]
  978. public string MaterialName
  979. {
  980. get { return materialName; }
  981. set { materialName = value; }
  982. }
  983. /// <summary>
  984. /// 品名代码
  985. /// </summary>
  986. [Description("品名代码")]
  987. [Nullable(true)]
  988. [DataLength(20)]
  989. public string Produccode
  990. {
  991. get { return produccode; }
  992. set { produccode = value; }
  993. }
  994. /// <summary>
  995. /// 品名描述
  996. /// </summary>
  997. [Description("品名描述")]
  998. [Nullable(true)]
  999. [DataLength(100)]
  1000. public string Producname
  1001. {
  1002. get { return producname; }
  1003. set { producname = value; }
  1004. }
  1005. /// <summary>
  1006. /// 钢级(牌号)代码
  1007. /// </summary>
  1008. [Description("钢级(牌号)代码")]
  1009. [Nullable(true)]
  1010. [DataLength(10)]
  1011. public string Steelcode
  1012. {
  1013. get { return steelcode; }
  1014. set { steelcode = value; }
  1015. }
  1016. /// <summary>
  1017. /// 钢级(牌号)名称
  1018. /// </summary>
  1019. [Description("钢级(牌号)名称")]
  1020. [Nullable(true)]
  1021. [DataLength(100)]
  1022. public string Steelname
  1023. {
  1024. get { return steelname; }
  1025. set { steelname = value; }
  1026. }
  1027. /// <summary>
  1028. /// 钢种代码
  1029. /// </summary>
  1030. [Description("钢种代码")]
  1031. [Nullable(true)]
  1032. [DataLength(10)]
  1033. public string Gradecode
  1034. {
  1035. get { return gradecode; }
  1036. set { gradecode = value; }
  1037. }
  1038. /// <summary>
  1039. /// 钢种名称
  1040. /// </summary>
  1041. [Description("钢种名称")]
  1042. [Nullable(true)]
  1043. [DataLength(100)]
  1044. public string Gradename
  1045. {
  1046. get { return gradename; }
  1047. set { gradename = value; }
  1048. }
  1049. /// <summary>
  1050. /// 产品规格代码
  1051. /// </summary>
  1052. [Description("产品规格代码")]
  1053. [Nullable(true)]
  1054. [DataLength(20)]
  1055. public string SpecCode
  1056. {
  1057. get { return specCode; }
  1058. set { specCode = value; }
  1059. }
  1060. /// <summary>
  1061. /// 产品规格描述
  1062. /// </summary>
  1063. [Description("产品规格描述")]
  1064. [Nullable(true)]
  1065. [DataLength(100)]
  1066. public string SpecName
  1067. {
  1068. get { return specName; }
  1069. set { specName = value; }
  1070. }
  1071. /// <summary>
  1072. /// 扣型代码
  1073. /// </summary>
  1074. [Description("扣型代码")]
  1075. [Nullable(true)]
  1076. [DataLength(20)]
  1077. public string ModelCode
  1078. {
  1079. get { return modelCode; }
  1080. set { modelCode = value; }
  1081. }
  1082. /// <summary>
  1083. /// 扣型描述
  1084. /// </summary>
  1085. [Description("扣型描述")]
  1086. [Nullable(true)]
  1087. [DataLength(100)]
  1088. public string ModelDesc
  1089. {
  1090. get { return modelDesc; }
  1091. set { modelDesc = value; }
  1092. }
  1093. /// <summary>
  1094. /// 标准代码
  1095. /// </summary>
  1096. [Description("标准代码")]
  1097. [Nullable(true)]
  1098. [DataLength(20)]
  1099. public string StdCode
  1100. {
  1101. get { return stdCode; }
  1102. set { stdCode = value; }
  1103. }
  1104. /// <summary>
  1105. /// 标准名称
  1106. /// </summary>
  1107. [Description("标准名称")]
  1108. [Nullable(true)]
  1109. [DataLength(256)]
  1110. public string StdName
  1111. {
  1112. get { return stdName; }
  1113. set { stdName = value; }
  1114. }
  1115. /// <summary>
  1116. /// 标准类别代码
  1117. /// </summary>
  1118. [Description("标准类别代码")]
  1119. [Nullable(true)]
  1120. [DataLength(20)]
  1121. public string StdStyle
  1122. {
  1123. get { return stdStyle; }
  1124. set { stdStyle = value; }
  1125. }
  1126. /// <summary>
  1127. /// 标准类别描述(PSL1....)
  1128. /// </summary>
  1129. [Description("标准类别描述(PSL1....)")]
  1130. [Nullable(true)]
  1131. [DataLength(50)]
  1132. public string StdStyleDesc
  1133. {
  1134. get { return stdStyleDesc; }
  1135. set { stdStyleDesc = value; }
  1136. }
  1137. /// <summary>
  1138. /// 工艺文件号
  1139. /// </summary>
  1140. [Description("工艺文件号")]
  1141. [Nullable(true)]
  1142. [DataLength(100)]
  1143. public string CrafNo
  1144. {
  1145. get { return crafNo; }
  1146. set { crafNo = value; }
  1147. }
  1148. /// <summary>
  1149. /// 生产批号
  1150. /// </summary>
  1151. [Description("生产批号")]
  1152. [Nullable(true)]
  1153. [DataLength(20)]
  1154. public string LotNo
  1155. {
  1156. get { return lotNo; }
  1157. set { lotNo = value; }
  1158. }
  1159. /// <summary>
  1160. /// 生产产线名称
  1161. /// </summary>
  1162. [Description("生产产线名称")]
  1163. [Nullable(true)]
  1164. [DataLength(100)]
  1165. public string PlineName
  1166. {
  1167. get { return plineName; }
  1168. set { plineName = value; }
  1169. }
  1170. /// <summary>
  1171. /// 生产合同号(合同号)
  1172. /// </summary>
  1173. [Description("生产合同号(合同号)")]
  1174. [Nullable(true)]
  1175. [DataLength(25)]
  1176. public string ProOrderNo
  1177. {
  1178. get { return proOrderNo; }
  1179. set { proOrderNo = value; }
  1180. }
  1181. /// <summary>
  1182. /// 产品标识(ABC)
  1183. /// </summary>
  1184. [Description("产品标识(ABC)")]
  1185. [Nullable(true)]
  1186. [DataLength(20)]
  1187. public string Target
  1188. {
  1189. get { return target; }
  1190. set { target = value; }
  1191. }
  1192. /// <summary>
  1193. /// 工艺状态(轧态)
  1194. /// </summary>
  1195. [Description("工艺状态(轧态)")]
  1196. [Nullable(true)]
  1197. [DataLength(20)]
  1198. public string ProcessStatus
  1199. {
  1200. get { return processStatus; }
  1201. set { processStatus = value; }
  1202. }
  1203. /// <summary>
  1204. /// 材料去向代码
  1205. /// </summary>
  1206. [Description("材料去向代码")]
  1207. [Nullable(false)]
  1208. [DataLength(20)]
  1209. public string MatGowhereCode
  1210. {
  1211. get { return matGowhereCode; }
  1212. set { matGowhereCode = value; }
  1213. }
  1214. /// <summary>
  1215. /// 材料去向
  1216. /// </summary>
  1217. [Description("材料去向")]
  1218. [Nullable(true)]
  1219. [DataLength(40)]
  1220. public string MatGowhereName
  1221. {
  1222. get { return matGowhereName; }
  1223. set { matGowhereName = value; }
  1224. }
  1225. /// <summary>
  1226. /// 外径(实际)
  1227. /// </summary>
  1228. [Description("外径(实际)")]
  1229. [Nullable(true)]
  1230. [DataLength(5)]
  1231. public decimal? ActDimater
  1232. {
  1233. get { return actDimater; }
  1234. set { actDimater = value; }
  1235. }
  1236. /// <summary>
  1237. /// 壁厚(实际)
  1238. /// </summary>
  1239. [Description("壁厚(实际)")]
  1240. [Nullable(true)]
  1241. [DataLength(5)]
  1242. public decimal? ActHeight
  1243. {
  1244. get { return actHeight; }
  1245. set { actHeight = value; }
  1246. }
  1247. /// <summary>
  1248. /// 长度下限(实际)
  1249. /// </summary>
  1250. [Description("长度下限(实际)")]
  1251. [Nullable(true)]
  1252. [DataLength(10)]
  1253. public string ActLenMin
  1254. {
  1255. get { return actLenMin; }
  1256. set { actLenMin = value; }
  1257. }
  1258. /// <summary>
  1259. /// 长度上限(实际)
  1260. /// </summary>
  1261. [Description("长度上限(实际)")]
  1262. [Nullable(true)]
  1263. [DataLength(10)]
  1264. public string ActLenMax
  1265. {
  1266. get { return actLenMax; }
  1267. set { actLenMax = value; }
  1268. }
  1269. /// <summary>
  1270. /// 工序判定结果代码
  1271. /// </summary>
  1272. [Description("工序判定结果代码")]
  1273. [Nullable(true)]
  1274. [DataLength(10)]
  1275. public string JudgeResultCode
  1276. {
  1277. get { return judgeResultCode; }
  1278. set { judgeResultCode = value; }
  1279. }
  1280. /// <summary>
  1281. /// 工序判定结果
  1282. /// </summary>
  1283. [Description("工序判定结果")]
  1284. [Nullable(true)]
  1285. [DataLength(20)]
  1286. public string JudgeResult
  1287. {
  1288. get { return judgeResult; }
  1289. set { judgeResult = value; }
  1290. }
  1291. /// <summary>
  1292. /// 工序判定时间
  1293. /// </summary>
  1294. [Description("工序判定时间")]
  1295. [Nullable(true)]
  1296. public string JudgeResultTime
  1297. {
  1298. get { return judgeResultTime; }
  1299. set { judgeResultTime = value; }
  1300. }
  1301. /// <summary>
  1302. /// 工序判定人
  1303. /// </summary>
  1304. [Description("工序判定人")]
  1305. [Nullable(true)]
  1306. [DataLength(20)]
  1307. public string JudgeMaker
  1308. {
  1309. get { return judgeMaker; }
  1310. set { judgeMaker = value; }
  1311. }
  1312. /// <summary>
  1313. /// 是否已处理后工序炉计划
  1314. /// </summary>
  1315. [Description("是否已处理后工序炉计划")]
  1316. [Nullable(true)]
  1317. [DataLength(1)]
  1318. public string IfSetZyPlan
  1319. {
  1320. get { return ifSetZyPlan; }
  1321. set { ifSetZyPlan = value; }
  1322. }
  1323. /// <summary>
  1324. /// 探伤等级
  1325. /// </summary>
  1326. [Description("探伤等级")]
  1327. [Nullable(true)]
  1328. [DataLength(20)]
  1329. public string TestingGrade
  1330. {
  1331. get { return testingGrade; }
  1332. set { testingGrade = value; }
  1333. }
  1334. /// <summary>
  1335. /// 探伤种类
  1336. /// </summary>
  1337. [Description("探伤种类")]
  1338. [Nullable(true)]
  1339. [DataLength(20)]
  1340. public string TestingType
  1341. {
  1342. get { return testingType; }
  1343. set { testingType = value; }
  1344. }
  1345. /// <summary>
  1346. /// 探伤等级1
  1347. /// </summary>
  1348. [Description("探伤等级1")]
  1349. [Nullable(true)]
  1350. [DataLength(20)]
  1351. public string TestingGrade1
  1352. {
  1353. get { return testingGrade1; }
  1354. set { testingGrade1 = value; }
  1355. }
  1356. /// <summary>
  1357. /// 探伤种类1
  1358. /// </summary>
  1359. [Description("探伤种类1")]
  1360. [Nullable(true)]
  1361. [DataLength(20)]
  1362. public string TestingType1
  1363. {
  1364. get { return testingType1; }
  1365. set { testingType1 = value; }
  1366. }
  1367. /// <summary>
  1368. /// 探伤结果代码1
  1369. /// </summary>
  1370. [Description("探伤结果代码1")]
  1371. [Nullable(true)]
  1372. [DataLength(20)]
  1373. public string DetectResultCode1
  1374. {
  1375. get { return detectResultCode1; }
  1376. set { detectResultCode1 = value; }
  1377. }
  1378. /// <summary>
  1379. /// 探伤检验报告目录1
  1380. /// </summary>
  1381. [Description("探伤检验报告目录1")]
  1382. [Nullable(true)]
  1383. [DataLength(200)]
  1384. public string DetectResultPath1
  1385. {
  1386. get { return detectResultPath1; }
  1387. set { detectResultPath1 = value; }
  1388. }
  1389. /// <summary>
  1390. /// 交货行主键
  1391. /// </summary>
  1392. [Description("交货行主键")]
  1393. [Nullable(true)]
  1394. [DataLength(50)]
  1395. public string OrdLnDlyPk
  1396. {
  1397. get { return ordLnDlyPk; }
  1398. set { ordLnDlyPk = value; }
  1399. }
  1400. /// <summary>
  1401. /// 送判状态 (0 正常送判,1退判 (判定后),2退判(判定前))
  1402. /// </summary>
  1403. [Description("送判状态")]
  1404. [Nullable(true)]
  1405. [DataLength(1)]
  1406. public string ApplyFlag
  1407. {
  1408. get { return applyFlag; }
  1409. set { applyFlag = value; }
  1410. }
  1411. /// <summary>
  1412. /// 退判原因
  1413. /// </summary>
  1414. [Description("退判原因")]
  1415. [Nullable(true)]
  1416. [DataLength(200)]
  1417. public string BackJugdeMemo
  1418. {
  1419. get { return backJugdeMemo; }
  1420. set { backJugdeMemo = value; }
  1421. }
  1422. /// <summary>
  1423. /// 缴库标志(1是、0否)
  1424. /// </summary>
  1425. [Description("缴库标志(1是、0否)")]
  1426. [Nullable(true)]
  1427. [DataLength(1)]
  1428. public string InstockFlag
  1429. {
  1430. get { return instockFlag; }
  1431. set { instockFlag = value; }
  1432. }
  1433. /// <summary>
  1434. /// 所属权单位代码
  1435. /// </summary>
  1436. [Description("所属权单位代码")]
  1437. [Nullable(true)]
  1438. [DataLength(40)]
  1439. public string BelongCode
  1440. {
  1441. get { return belongCode; }
  1442. set { belongCode = value; }
  1443. }
  1444. /// <summary>
  1445. /// 所属权单位
  1446. /// </summary>
  1447. [Description("所属权单位")]
  1448. [Nullable(true)]
  1449. [DataLength(50)]
  1450. public string BelongName
  1451. {
  1452. get { return belongName; }
  1453. set { belongName = value; }
  1454. }
  1455. /// <summary>
  1456. /// 是否末工序(末工序时合同成品属性有效)
  1457. /// </summary>
  1458. [Description("是否末工序(末工序时合同成品属性有效)")]
  1459. [Nullable(true)]
  1460. [DataLength(1)]
  1461. public string Isendgx
  1462. {
  1463. get { return isendgx; }
  1464. set { isendgx = value; }
  1465. }
  1466. /// <summary>
  1467. /// 终轧温度
  1468. /// </summary>
  1469. [Description("终轧温度")]
  1470. [Nullable(true)]
  1471. [DataLength(6)]
  1472. public decimal? ExitTemp
  1473. {
  1474. get { return exitTemp; }
  1475. set { exitTemp = value; }
  1476. }
  1477. /// <summary>
  1478. /// 样管信息
  1479. /// </summary>
  1480. [Description("样管信息")]
  1481. [Nullable(true)]
  1482. [DataLength(200)]
  1483. public string SampleNews
  1484. {
  1485. get { return sampleNews; }
  1486. set { sampleNews = value; }
  1487. }
  1488. /// <summary>
  1489. /// 长度(实际)
  1490. /// </summary>
  1491. [Description("长度(实际)")]
  1492. [Nullable(true)]
  1493. [DataLength(15)]
  1494. public decimal? ActLen
  1495. {
  1496. get { return actLen; }
  1497. set { actLen = value; }
  1498. }
  1499. /// <summary>
  1500. /// 所属权单位代码(判定后)
  1501. /// </summary>
  1502. [Description("所属权单位代码(判定后)")]
  1503. [Nullable(true)]
  1504. [DataLength(40)]
  1505. public string BelongCodeJugde
  1506. {
  1507. get { return belongCodeJugde; }
  1508. set { belongCodeJugde = value; }
  1509. }
  1510. /// <summary>
  1511. /// 所属权单位(判定后)
  1512. /// </summary>
  1513. [Description("所属权单位(判定后)")]
  1514. [Nullable(true)]
  1515. [DataLength(50)]
  1516. public string BelongNameJugde
  1517. {
  1518. get { return belongNameJugde; }
  1519. set { belongNameJugde = value; }
  1520. }
  1521. /// <summary>
  1522. /// 工序排产序号
  1523. /// </summary>
  1524. [Description("工序排产序号")]
  1525. [Nullable(true)]
  1526. [DataLength(10)]
  1527. public string GxPlanNo
  1528. {
  1529. get { return gxPlanNo; }
  1530. set { gxPlanNo = value; }
  1531. }
  1532. /// <summary>
  1533. /// 投料量
  1534. /// </summary>
  1535. [Description("投料量")]
  1536. [Nullable(true)]
  1537. [DataLength(9)]
  1538. public decimal? InputWeight
  1539. {
  1540. get { return inputWeight; }
  1541. set { inputWeight = value; }
  1542. }
  1543. /// <summary>
  1544. /// 投料支数(单倍坯)
  1545. /// </summary>
  1546. [Description("投料支数")]
  1547. [Nullable(true)]
  1548. [DataLength(5)]
  1549. public decimal? InputCount
  1550. {
  1551. get { return inputCount; }
  1552. set { inputCount = value; }
  1553. }
  1554. /// <summary>
  1555. /// 判定吨(原料)+废品吨(单倍坯) (出)
  1556. /// </summary>
  1557. [Description("判定吨")]
  1558. [Nullable(true)]
  1559. [DataLength(9)]
  1560. public decimal? OutputWeight
  1561. {
  1562. get { return outputWeight; }
  1563. set { outputWeight = value; }
  1564. }
  1565. /// <summary>
  1566. /// 判定支(原料)+废品支(单倍坯)
  1567. /// </summary>
  1568. [Description("判定支")]
  1569. [Nullable(true)]
  1570. [DataLength(5)]
  1571. public decimal? OutputCount
  1572. {
  1573. get { return outputCount; }
  1574. set { outputCount = value; }
  1575. }
  1576. /// <summary>
  1577. /// 结转年月
  1578. /// </summary>
  1579. [Description("结转年月")]
  1580. [Nullable(true)]
  1581. [DataLength(6)]
  1582. public string BalYearMonth
  1583. {
  1584. get { return balYearMonth; }
  1585. set { balYearMonth = value; }
  1586. }
  1587. /// <summary>
  1588. /// 是否有效(0 有效 1 无效)
  1589. /// </summary>
  1590. [Description("是否有效(0 有效 1 无效)")]
  1591. [Nullable(true)]
  1592. [DataLength(1)]
  1593. public string IsFlag
  1594. {
  1595. get { return isFlag; }
  1596. set { isFlag = value; }
  1597. }
  1598. /// <summary>
  1599. /// 判定类型(0,正常 1整炉废 2白条 3红冲)
  1600. /// </summary>
  1601. [Description("判定类型")]
  1602. [Nullable(true)]
  1603. [DataLength(1)]
  1604. public string IsAllScrap
  1605. {
  1606. get { return isAllScrap; }
  1607. set { isAllScrap = value; }
  1608. }
  1609. /// <summary>
  1610. /// 是否结转(0 未结转 1结转)
  1611. /// </summary>
  1612. [Description("是否结转(0 未结转 1结转)")]
  1613. [Nullable(true)]
  1614. [DataLength(1)]
  1615. public string IsCarryVoer
  1616. {
  1617. get { return isCarryVoer; }
  1618. set { isCarryVoer = value; }
  1619. }
  1620. /// <summary>
  1621. /// 熔炼炉号
  1622. /// </summary>
  1623. [Description("熔炼炉号")]
  1624. [Nullable(true)]
  1625. [DataLength(10)]
  1626. public string StoveNo
  1627. {
  1628. get { return stoveNo; }
  1629. set { stoveNo = value; }
  1630. }
  1631. /// <summary>
  1632. /// 轧管判定标准(技术标准)
  1633. /// </summary>
  1634. [Description("轧管判定标准(技术标准)")]
  1635. [Nullable(true)]
  1636. [DataLength(200)]
  1637. public string SteelStandrad
  1638. {
  1639. get { return steelStandrad; }
  1640. set { steelStandrad = value; }
  1641. }
  1642. /// <summary>
  1643. /// 订单编号(下一工序订单)
  1644. /// </summary>
  1645. [Description("订单编号(下一工序订单)")]
  1646. [Nullable(true)]
  1647. [DataLength(20)]
  1648. public string ProPlanIdNext
  1649. {
  1650. get { return proPlanIdNext; }
  1651. set { proPlanIdNext = value; }
  1652. }
  1653. /// <summary>
  1654. /// 工序排产序号
  1655. /// </summary>
  1656. [Description("工序排产序号")]
  1657. [Nullable(true)]
  1658. [DataLength(10)]
  1659. public string GxPlanNoNext
  1660. {
  1661. get { return gxPlanNoNext; }
  1662. set { gxPlanNoNext = value; }
  1663. }
  1664. /// <summary>
  1665. /// 利库标识(0,正常,1,利库)
  1666. /// </summary>
  1667. [Description("利库标识(0,正常,1,利库)")]
  1668. [Nullable(true)]
  1669. [DataLength(1)]
  1670. public string LkFlag
  1671. {
  1672. get { return lkFlag; }
  1673. set { lkFlag = value; }
  1674. }
  1675. /// <summary>
  1676. /// 工序判定备注
  1677. /// </summary>
  1678. [Description("工序判定备注")]
  1679. [Nullable(true)]
  1680. [DataLength(500)]
  1681. public string JudgeMemo
  1682. {
  1683. get { return judgeMemo; }
  1684. set { judgeMemo = value; }
  1685. }
  1686. /// <summary>
  1687. /// 工序判定班次
  1688. /// </summary>
  1689. [Description("工序判定班次")]
  1690. [Nullable(true)]
  1691. [DataLength(10)]
  1692. public string JudgeOrder
  1693. {
  1694. get { return judgeOrder; }
  1695. set { judgeOrder = value; }
  1696. }
  1697. /// <summary>
  1698. /// 工序判定班组
  1699. /// </summary>
  1700. [Description("工序判定班组")]
  1701. [Nullable(true)]
  1702. [DataLength(10)]
  1703. public string JudgeGroup
  1704. {
  1705. get { return judgeGroup; }
  1706. set { judgeGroup = value; }
  1707. }
  1708. /// <summary>
  1709. /// 判定炉号(带序号)
  1710. /// </summary>
  1711. [Description("判定炉号(带序号)")]
  1712. [Nullable(true)]
  1713. [DataLength(50)]
  1714. public string JudgeStoveNoSeq
  1715. {
  1716. get { return judgeStoveNoSeq; }
  1717. set { judgeStoveNoSeq = value; }
  1718. }
  1719. /// <summary>
  1720. /// 下工序代码
  1721. /// </summary>
  1722. [Description("下工序代码")]
  1723. [Nullable(true)]
  1724. [DataLength(8)]
  1725. public string NextProcessCdoe
  1726. {
  1727. get { return nextProcessCdoe; }
  1728. set { nextProcessCdoe = value; }
  1729. }
  1730. /// <summary>
  1731. /// 申请判定顺序号
  1732. /// </summary>
  1733. [Description("申请判定顺序号")]
  1734. [Nullable(false)]
  1735. [DataLength(3)]
  1736. public string JugdeApplySequeno
  1737. {
  1738. get { return jugdeApplySequeno; }
  1739. set { jugdeApplySequeno = value; }
  1740. }
  1741. /// <summary>
  1742. /// 工序不合格处置方式
  1743. /// </summary>
  1744. [Description("工序不合格处置方式")]
  1745. [Nullable(true)]
  1746. [DataLength(20)]
  1747. public string AuditResult
  1748. {
  1749. get { return auditResult; }
  1750. set { auditResult = value; }
  1751. }
  1752. /// <summary>
  1753. /// 工序不合格处置备注
  1754. /// </summary>
  1755. [Description("工序不合格处置备注")]
  1756. [Nullable(true)]
  1757. [DataLength(500)]
  1758. public string AuditMemo
  1759. {
  1760. get { return auditMemo; }
  1761. set { auditMemo = value; }
  1762. }
  1763. /// <summary>
  1764. /// 综合判定结果代码
  1765. /// </summary>
  1766. [Description("综合判定结果代码")]
  1767. [Nullable(true)]
  1768. [DataLength(10)]
  1769. public string JudgeTolresultCode
  1770. {
  1771. get { return judgeTolresultCode; }
  1772. set { judgeTolresultCode = value; }
  1773. }
  1774. /// <summary>
  1775. /// 综合判定结果
  1776. /// </summary>
  1777. [Description("综合判定结果")]
  1778. [Nullable(true)]
  1779. [DataLength(20)]
  1780. public string JudgeTolresult
  1781. {
  1782. get { return judgeTolresult; }
  1783. set { judgeTolresult = value; }
  1784. }
  1785. /// <summary>
  1786. /// 综合判定时间
  1787. /// </summary>
  1788. [Description("综合判定时间")]
  1789. [Nullable(true)]
  1790. public string JudgeTolresultTime
  1791. {
  1792. get { return judgeTolresultTime; }
  1793. set { judgeTolresultTime = value; }
  1794. }
  1795. /// <summary>
  1796. /// 综合判定人
  1797. /// </summary>
  1798. [Description("综合判定人")]
  1799. [Nullable(true)]
  1800. [DataLength(20)]
  1801. public string JudgeTolmaker
  1802. {
  1803. get { return judgeTolmaker; }
  1804. set { judgeTolmaker = value; }
  1805. }
  1806. /// <summary>
  1807. /// 综合判定备注
  1808. /// </summary>
  1809. [Description("综合判定备注")]
  1810. [Nullable(true)]
  1811. [DataLength(500)]
  1812. public string JudgeTolmemo
  1813. {
  1814. get { return judgeTolmemo; }
  1815. set { judgeTolmemo = value; }
  1816. }
  1817. /// <summary>
  1818. /// 综合判定班次
  1819. /// </summary>
  1820. [Description("综合判定班次")]
  1821. [Nullable(true)]
  1822. [DataLength(10)]
  1823. public string JudgeTolorder
  1824. {
  1825. get { return judgeTolorder; }
  1826. set { judgeTolorder = value; }
  1827. }
  1828. /// <summary>
  1829. /// 综合判定班组
  1830. /// </summary>
  1831. [Description("综合判定班组")]
  1832. [Nullable(true)]
  1833. [DataLength(10)]
  1834. public string JudgeTolgroup
  1835. {
  1836. get { return judgeTolgroup; }
  1837. set { judgeTolgroup = value; }
  1838. }
  1839. /// <summary>
  1840. /// 综合不合格处置方式
  1841. /// </summary>
  1842. [Description("综合不合格处置方式")]
  1843. [Nullable(true)]
  1844. [DataLength(20)]
  1845. public string AuditTolresult
  1846. {
  1847. get { return auditTolresult; }
  1848. set { auditTolresult = value; }
  1849. }
  1850. /// <summary>
  1851. /// 综合不合格处置备注
  1852. /// </summary>
  1853. [Description("综合不合格处置备注")]
  1854. [Nullable(true)]
  1855. [DataLength(500)]
  1856. public string AuditTolmemo
  1857. {
  1858. get { return auditTolmemo; }
  1859. set { auditTolmemo = value; }
  1860. }
  1861. /// <summary>
  1862. /// 工序综合判定单号
  1863. /// </summary>
  1864. [Description("工序综合判定单号")]
  1865. [Nullable(true)]
  1866. [DataLength(40)]
  1867. public string JugdeConvicted
  1868. {
  1869. get { return jugdeConvicted; }
  1870. set { jugdeConvicted = value; }
  1871. }
  1872. /// <summary>
  1873. /// 成品综合判定单号
  1874. /// </summary>
  1875. [Description("成品综合判定单号")]
  1876. [Nullable(true)]
  1877. [DataLength(40)]
  1878. public string JugdeTolconvicted
  1879. {
  1880. get { return jugdeTolconvicted; }
  1881. set { jugdeTolconvicted = value; }
  1882. }
  1883. /// <summary>
  1884. /// 半成品是否紧急放行(0正常,1紧急放行)
  1885. /// </summary>
  1886. [Description("半成品是否紧急放行(0正常,1紧急放行)")]
  1887. [Nullable(true)]
  1888. [DataLength(1)]
  1889. public string InstancyFlag
  1890. {
  1891. get { return instancyFlag; }
  1892. set { instancyFlag = value; }
  1893. }
  1894. /// <summary>
  1895. /// 成品是否紧急放行(0正常,1紧急放行)
  1896. /// </summary>
  1897. [Description("成品是否紧急放行(0正常,1紧急放行)")]
  1898. [Nullable(true)]
  1899. [DataLength(1)]
  1900. public string TolInstancyFlag
  1901. {
  1902. get { return tolInstancyFlag; }
  1903. set { tolInstancyFlag = value; }
  1904. }
  1905. /// <summary>
  1906. /// 工艺序号
  1907. /// </summary>
  1908. [Description("工艺序号")]
  1909. [Nullable(true)]
  1910. [DataLength(5)]
  1911. public decimal? CraftSeq
  1912. {
  1913. get { return craftSeq; }
  1914. set { craftSeq = value; }
  1915. }
  1916. /// <summary>
  1917. /// 主制程索引号
  1918. /// </summary>
  1919. [Description("主制程索引号")]
  1920. [Nullable(true)]
  1921. [DataLength(32)]
  1922. public string IndexSeq
  1923. {
  1924. get { return indexSeq; }
  1925. set { indexSeq = value; }
  1926. }
  1927. /// <summary>
  1928. /// 成分标准索引号(内控)
  1929. /// </summary>
  1930. [Description("成分标准索引号(内控)")]
  1931. [Nullable(true)]
  1932. [DataLength(100)]
  1933. public string Cic
  1934. {
  1935. get { return cic; }
  1936. set { cic = value; }
  1937. }
  1938. /// <summary>
  1939. /// 材质标准索引号(内控)
  1940. /// </summary>
  1941. [Description("材质标准索引号(内控)")]
  1942. [Nullable(true)]
  1943. [DataLength(100)]
  1944. public string Pic
  1945. {
  1946. get { return pic; }
  1947. set { pic = value; }
  1948. }
  1949. /// <summary>
  1950. /// 公差标准索引号(内控)
  1951. /// </summary>
  1952. [Description("公差标准索引号(内控)")]
  1953. [Nullable(true)]
  1954. [DataLength(100)]
  1955. public string Sic
  1956. {
  1957. get { return sic; }
  1958. set { sic = value; }
  1959. }
  1960. /// <summary>
  1961. /// 探伤标准索引号(内控)
  1962. /// </summary>
  1963. [Description("探伤标准索引号(内控)")]
  1964. [Nullable(true)]
  1965. [DataLength(100)]
  1966. public string Dic
  1967. {
  1968. get { return dic; }
  1969. set { dic = value; }
  1970. }
  1971. /// <summary>
  1972. /// 水压标准索引号(内控)
  1973. /// </summary>
  1974. [Description("水压标准索引号(内控)")]
  1975. [Nullable(true)]
  1976. [DataLength(100)]
  1977. public string Wic
  1978. {
  1979. get { return wic; }
  1980. set { wic = value; }
  1981. }
  1982. /// <summary>
  1983. /// 加工标准索引号(内控)
  1984. /// </summary>
  1985. [Description("加工标准索引号(内控)")]
  1986. [Nullable(true)]
  1987. [DataLength(100)]
  1988. public string Gic
  1989. {
  1990. get { return gic; }
  1991. set { gic = value; }
  1992. }
  1993. /// <summary>
  1994. /// 下工序炉次计划号
  1995. /// </summary>
  1996. [Description("下工序炉次计划号")]
  1997. [Nullable(true)]
  1998. [DataLength(20)]
  1999. public string HeatPlanNoNext
  2000. {
  2001. get { return heatPlanNoNext; }
  2002. set { heatPlanNoNext = value; }
  2003. }
  2004. /// <summary>
  2005. /// 检验编号
  2006. /// </summary>
  2007. [Description("检验编号")]
  2008. [Nullable(true)]
  2009. [DataLength(400)]
  2010. public string CheckNo
  2011. {
  2012. get { return checkNo; }
  2013. set { checkNo = value; }
  2014. }
  2015. /// <summary>
  2016. /// 本工序炉计划ID
  2017. /// </summary>
  2018. [Description("本工序炉计划ID")]
  2019. [Nullable(true)]
  2020. [DataLength(20)]
  2021. public string HeatPlanNo
  2022. {
  2023. get { return heatPlanNo; }
  2024. set { heatPlanNo = value; }
  2025. }
  2026. /// <summary>
  2027. /// 交货状态代码(4100)
  2028. /// </summary>
  2029. [Description("交货状态代码(4100)")]
  2030. [Nullable(true)]
  2031. [DataLength(20)]
  2032. public string DeliveryStateCode
  2033. {
  2034. get { return deliveryStateCode; }
  2035. set { deliveryStateCode = value; }
  2036. }
  2037. /// <summary>
  2038. /// 交货状态名称
  2039. /// </summary>
  2040. [Description("交货状态名称")]
  2041. [Nullable(true)]
  2042. [DataLength(32)]
  2043. public string DeliveryStateName
  2044. {
  2045. get { return deliveryStateName; }
  2046. set { deliveryStateName = value; }
  2047. }
  2048. /// <summary>
  2049. /// 上料炉号
  2050. /// </summary>
  2051. [Description("上料炉号")]
  2052. [Nullable(true)]
  2053. [DataLength(6)]
  2054. public string LoadJudgeStoveNo
  2055. {
  2056. get { return loadJudgeStoveNo; }
  2057. set { loadJudgeStoveNo = value; }
  2058. }
  2059. /// <summary>
  2060. /// 组批主炉号(炉号+批号)
  2061. /// </summary>
  2062. [Description("组批主炉号(炉号+批号)")]
  2063. [Nullable(true)]
  2064. [DataLength(64)]
  2065. public string ZpMLh
  2066. {
  2067. get { return zpMLh; }
  2068. set { zpMLh = value; }
  2069. }
  2070. /// <summary>
  2071. /// 组批炉号集合逗号分隔(炉号1+批号1,炉号2+批号2)
  2072. /// </summary>
  2073. [Description("组批炉号集合逗号分隔(炉号1+批号1,炉号2+批号2)")]
  2074. [Nullable(true)]
  2075. [DataLength(256)]
  2076. public string ZpColl
  2077. {
  2078. get { return zpColl; }
  2079. set { zpColl = value; }
  2080. }
  2081. /// <summary>
  2082. /// 热处理状态
  2083. /// </summary>
  2084. [Description("热处理状态")]
  2085. [Nullable(true)]
  2086. [DataLength(20)]
  2087. public string HttType
  2088. {
  2089. get { return httType; }
  2090. set { httType = value; }
  2091. }
  2092. /// <summary>
  2093. /// 最低回火温度
  2094. /// </summary>
  2095. [Description("最低回火温度")]
  2096. [Nullable(true)]
  2097. [DataLength(50)]
  2098. public string MinTemp
  2099. {
  2100. get { return minTemp; }
  2101. set { minTemp = value; }
  2102. }
  2103. /// <summary>
  2104. /// 热处理工艺制度
  2105. /// </summary>
  2106. [Description("热处理工艺制度")]
  2107. [Nullable(true)]
  2108. [DataLength(50)]
  2109. public string HttTechnology
  2110. {
  2111. get { return httTechnology; }
  2112. set { httTechnology = value; }
  2113. }
  2114. /// <summary>
  2115. /// 样管刻槽信息
  2116. /// </summary>
  2117. [Description("样管刻槽信息")]
  2118. [Nullable(true)]
  2119. [DataLength(50)]
  2120. public string NotchInfo
  2121. {
  2122. get { return notchInfo; }
  2123. set { notchInfo = value; }
  2124. }
  2125. /// <summary>
  2126. /// 槽长
  2127. /// </summary>
  2128. [Description("槽长")]
  2129. [Nullable(true)]
  2130. [DataLength(50)]
  2131. public string NotchLength
  2132. {
  2133. get { return notchLength; }
  2134. set { notchLength = value; }
  2135. }
  2136. /// <summary>
  2137. /// 槽宽
  2138. /// </summary>
  2139. [Description("槽宽")]
  2140. [Nullable(true)]
  2141. [DataLength(50)]
  2142. public string NotchWidth
  2143. {
  2144. get { return notchWidth; }
  2145. set { notchWidth = value; }
  2146. }
  2147. /// <summary>
  2148. /// 槽深
  2149. /// </summary>
  2150. [Description("槽深")]
  2151. [Nullable(true)]
  2152. [DataLength(50)]
  2153. public string NotchDepth
  2154. {
  2155. get { return notchDepth; }
  2156. set { notchDepth = value; }
  2157. }
  2158. /// <summary>
  2159. /// 生产批下炉归组
  2160. /// </summary>
  2161. [Description("生产批下炉归组")]
  2162. [Nullable(true)]
  2163. [DataLength(10)]
  2164. public string LotNoGroup
  2165. {
  2166. get { return lotNoGroup; }
  2167. set { lotNoGroup = value; }
  2168. }
  2169. /// <summary>
  2170. /// 水压压力PSI
  2171. /// </summary>
  2172. [Description("水压压力PSI")]
  2173. [Nullable(true)]
  2174. [DataLength(10)]
  2175. public string TestPressure
  2176. {
  2177. get { return testPressure; }
  2178. set { testPressure = value; }
  2179. }
  2180. /// <summary>
  2181. /// 保压时间S
  2182. /// </summary>
  2183. [Description("保压时间S")]
  2184. [Nullable(true)]
  2185. [DataLength(10)]
  2186. public string HoldtimeTime
  2187. {
  2188. get { return holdtimeTime; }
  2189. set { holdtimeTime = value; }
  2190. }
  2191. /// <summary>
  2192. /// 水压压力MPA
  2193. /// </summary>
  2194. [Description("水压压力MPA")]
  2195. [Nullable(true)]
  2196. [DataLength(10)]
  2197. public string TestPressureY
  2198. {
  2199. get { return testPressureY; }
  2200. set { testPressureY = value; }
  2201. }
  2202. /// <summary>
  2203. /// 加工水压结果
  2204. /// </summary>
  2205. [Description("加工水压结果")]
  2206. [Nullable(true)]
  2207. [DataLength(10)]
  2208. public string MchWatergageResult
  2209. {
  2210. get { return mchWatergageResult; }
  2211. set { mchWatergageResult = value; }
  2212. }
  2213. /// <summary>
  2214. /// 加工通径结果
  2215. /// </summary>
  2216. [Description("加工通径结果")]
  2217. [Nullable(true)]
  2218. [DataLength(10)]
  2219. public string MchPathResult
  2220. {
  2221. get { return mchPathResult; }
  2222. set { mchPathResult = value; }
  2223. }
  2224. /// <summary>
  2225. /// 加工倒棱结果
  2226. /// </summary>
  2227. [Description("加工倒棱结果")]
  2228. [Nullable(true)]
  2229. [DataLength(10)]
  2230. public string MchChamferingResult
  2231. {
  2232. get { return mchChamferingResult; }
  2233. set { mchChamferingResult = value; }
  2234. }
  2235. /// <summary>
  2236. /// 加工拧接结果
  2237. /// </summary>
  2238. [Description("加工拧接结果")]
  2239. [Nullable(true)]
  2240. [DataLength(10)]
  2241. public string MchTwistinglyResult
  2242. {
  2243. get { return mchTwistinglyResult; }
  2244. set { mchTwistinglyResult = value; }
  2245. }
  2246. /// <summary>
  2247. /// 加工几何尺寸结果
  2248. /// </summary>
  2249. [Description("加工几何尺寸结果")]
  2250. [Nullable(true)]
  2251. [DataLength(10)]
  2252. public string MchDimensionsResult
  2253. {
  2254. get { return mchDimensionsResult; }
  2255. set { mchDimensionsResult = value; }
  2256. }
  2257. /// <summary>
  2258. /// 加工表面质量结果
  2259. /// </summary>
  2260. [Description("加工表面质量结果")]
  2261. [Nullable(true)]
  2262. [DataLength(10)]
  2263. public string MchVisualResult
  2264. {
  2265. get { return mchVisualResult; }
  2266. set { mchVisualResult = value; }
  2267. }
  2268. /// <summary>
  2269. /// 加工螺纹检验结果
  2270. /// </summary>
  2271. [Description("加工螺纹检验结果")]
  2272. [Nullable(true)]
  2273. [DataLength(10)]
  2274. public string MchThreadInspectionResult
  2275. {
  2276. get { return mchThreadInspectionResult; }
  2277. set { mchThreadInspectionResult = value; }
  2278. }
  2279. /// <summary>
  2280. /// 加工剩磁结果
  2281. /// </summary>
  2282. [Description("加工剩磁结果")]
  2283. [Nullable(true)]
  2284. [DataLength(10)]
  2285. public string MchRemanenceResult
  2286. {
  2287. get { return mchRemanenceResult; }
  2288. set { mchRemanenceResult = value; }
  2289. }
  2290. /// <summary>
  2291. /// 加工放射性结果
  2292. /// </summary>
  2293. [Description("加工放射性结果")]
  2294. [Nullable(true)]
  2295. [DataLength(10)]
  2296. public string MchRadioactivityResult
  2297. {
  2298. get { return mchRadioactivityResult; }
  2299. set { mchRadioactivityResult = value; }
  2300. }
  2301. /// <summary>
  2302. /// 加工坡口结果
  2303. /// </summary>
  2304. [Description("加工坡口结果")]
  2305. [Nullable(true)]
  2306. [DataLength(10)]
  2307. public string MchBevelResult
  2308. {
  2309. get { return mchBevelResult; }
  2310. set { mchBevelResult = value; }
  2311. }
  2312. /// <summary>
  2313. /// 坡口角度
  2314. /// </summary>
  2315. [Description("坡口角度")]
  2316. [Nullable(true)]
  2317. [DataLength(20)]
  2318. public string AngleVal
  2319. {
  2320. get { return angleVal; }
  2321. set { angleVal = value; }
  2322. }
  2323. /// <summary>
  2324. /// 钝边
  2325. /// </summary>
  2326. [Description("钝边")]
  2327. [Nullable(true)]
  2328. [DataLength(20)]
  2329. public string EdgeVal
  2330. {
  2331. get { return edgeVal; }
  2332. set { edgeVal = value; }
  2333. }
  2334. /// <summary>
  2335. /// 质保书来源(1,产销出质保书 2,老系统出质保书)
  2336. /// </summary>
  2337. [Description("质保书来源(1,产销出质保书 2,老系统出质保书)")]
  2338. [Nullable(true)]
  2339. [DataLength(1)]
  2340. public string ZbsFlag
  2341. {
  2342. get { return zbsFlag; }
  2343. set { zbsFlag = value; }
  2344. }
  2345. /// <summary>
  2346. /// 探伤标准
  2347. /// </summary>
  2348. [Description("探伤标准")]
  2349. [Nullable(true)]
  2350. [DataLength(20)]
  2351. public string TestingStandar
  2352. {
  2353. get { return testingStandar; }
  2354. set { testingStandar = value; }
  2355. }
  2356. /// <summary>
  2357. /// 待判原因
  2358. /// </summary>
  2359. [Description("待判原因")]
  2360. [Nullable(true)]
  2361. [DataLength(100)]
  2362. public string WaitingDecisionMemo
  2363. {
  2364. get { return waitingDecisionMemo; }
  2365. set { waitingDecisionMemo = value; }
  2366. }
  2367. }
  2368. }