QcmZgJugdeApplyEntity.cs 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  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.Lims.Port.数据管理.实体类
  8. {
  9. /// <summary>
  10. /// 数据库表QCM_ZG_JUGDE_APPLY所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:DM22222 时间:2018-12-11
  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 decimal? driftModelMin = null;
  643. /// <summary>
  644. /// 测量-端部
  645. /// </summary>
  646. private decimal? measuredEndPart = null;
  647. /// <summary>
  648. /// 测量-中部
  649. /// </summary>
  650. private decimal? measuredMiddlePart = null;
  651. /// <summary>
  652. /// 测量-尾部
  653. /// </summary>
  654. private decimal? measuredTailPart = null;
  655. /// <summary>
  656. /// 申请判定单号
  657. /// </summary>
  658. [Description("申请判定单号")]
  659. [Nullable(false)]
  660. [DataLength(40)]
  661. public string JugdeApplyCode
  662. {
  663. get { return jugdeApplyCode; }
  664. set { jugdeApplyCode = value; }
  665. }
  666. /// <summary>
  667. /// 炉号
  668. /// </summary>
  669. [Description("炉号")]
  670. [Nullable(false)]
  671. [DataLength(6)]
  672. public string JudgeStoveNo
  673. {
  674. get { return judgeStoveNo; }
  675. set { judgeStoveNo = value; }
  676. }
  677. /// <summary>
  678. /// 批号
  679. /// </summary>
  680. [Description("批号")]
  681. [Nullable(false)]
  682. [DataLength(20)]
  683. public string BatchNo
  684. {
  685. get { return batchNo; }
  686. set { batchNo = value; }
  687. }
  688. /// <summary>
  689. /// 组号
  690. /// </summary>
  691. [Description("组号")]
  692. [Nullable(false)]
  693. [DataLength(3)]
  694. public string BatchGroudNo
  695. {
  696. get { return batchGroudNo; }
  697. set { batchGroudNo = value; }
  698. }
  699. /// <summary>
  700. /// 工序代码(A\B\C\D.....)
  701. /// </summary>
  702. [Description("工序代码(A\\B\\C\\D.....)")]
  703. [Nullable(true)]
  704. [DataLength(1)]
  705. public string ProcessCode
  706. {
  707. get { return processCode; }
  708. set { processCode = value; }
  709. }
  710. /// <summary>
  711. /// 产线代码
  712. /// </summary>
  713. [Description("产线代码")]
  714. [Nullable(true)]
  715. [DataLength(20)]
  716. public string PlineCode
  717. {
  718. get { return plineCode; }
  719. set { plineCode = value; }
  720. }
  721. /// <summary>
  722. /// 支数
  723. /// </summary>
  724. [Description("支数")]
  725. [Nullable(true)]
  726. [DataLength(5)]
  727. public decimal? ActCount
  728. {
  729. get { return actCount; }
  730. set { actCount = value; }
  731. }
  732. /// <summary>
  733. /// 实重
  734. /// </summary>
  735. [Description("实重")]
  736. [Nullable(true)]
  737. [DataLength(12)]
  738. public decimal? ActWeight
  739. {
  740. get { return actWeight; }
  741. set { actWeight = value; }
  742. }
  743. /// <summary>
  744. /// 理论重量
  745. /// </summary>
  746. [Description("理论重量")]
  747. [Nullable(true)]
  748. [DataLength(12)]
  749. public decimal? ActTheoryWeight
  750. {
  751. get { return actTheoryWeight; }
  752. set { actTheoryWeight = value; }
  753. }
  754. /// <summary>
  755. /// 申请判定生产订单号(工序排产订单号)
  756. /// </summary>
  757. [Description("申请判定生产订单号(工序排产订单号)")]
  758. [Nullable(true)]
  759. [DataLength(20)]
  760. public string ProOrderId
  761. {
  762. get { return proOrderId; }
  763. set { proOrderId = value; }
  764. }
  765. /// <summary>
  766. /// 表面结果代码
  767. /// </summary>
  768. [Description("表面结果代码")]
  769. [Nullable(true)]
  770. [DataLength(20)]
  771. public string FaceResultCode
  772. {
  773. get { return faceResultCode; }
  774. set { faceResultCode = value; }
  775. }
  776. /// <summary>
  777. /// 公差结果代码
  778. /// </summary>
  779. [Description("公差结果代码")]
  780. [Nullable(true)]
  781. [DataLength(20)]
  782. public string SpecResultCode
  783. {
  784. get { return specResultCode; }
  785. set { specResultCode = value; }
  786. }
  787. /// <summary>
  788. /// 成分结果代码
  789. /// </summary>
  790. [Description("成分结果代码")]
  791. [Nullable(true)]
  792. [DataLength(20)]
  793. public string ChemResultCode
  794. {
  795. get { return chemResultCode; }
  796. set { chemResultCode = value; }
  797. }
  798. /// <summary>
  799. /// 理化结果代码
  800. /// </summary>
  801. [Description("理化结果代码")]
  802. [Nullable(true)]
  803. [DataLength(20)]
  804. public string PhyResultCode
  805. {
  806. get { return phyResultCode; }
  807. set { phyResultCode = value; }
  808. }
  809. /// <summary>
  810. /// 探伤结果代码
  811. /// </summary>
  812. [Description("探伤结果代码")]
  813. [Nullable(true)]
  814. [DataLength(20)]
  815. public string DetectResultCode
  816. {
  817. get { return detectResultCode; }
  818. set { detectResultCode = value; }
  819. }
  820. /// <summary>
  821. /// 水压结果代码
  822. /// </summary>
  823. [Description("水压结果代码")]
  824. [Nullable(true)]
  825. [DataLength(20)]
  826. public string WpressureResultCode
  827. {
  828. get { return wpressureResultCode; }
  829. set { wpressureResultCode = value; }
  830. }
  831. /// <summary>
  832. /// 加工结果代码
  833. /// </summary>
  834. [Description("加工结果代码")]
  835. [Nullable(true)]
  836. [DataLength(20)]
  837. public string ProcessResultCode
  838. {
  839. get { return processResultCode; }
  840. set { processResultCode = value; }
  841. }
  842. /// <summary>
  843. /// 表面检验报告目录
  844. /// </summary>
  845. [Description("表面检验报告目录")]
  846. [Nullable(true)]
  847. [DataLength(200)]
  848. public string FaceResultPath
  849. {
  850. get { return faceResultPath; }
  851. set { faceResultPath = value; }
  852. }
  853. /// <summary>
  854. /// 公差检验报告目录
  855. /// </summary>
  856. [Description("公差检验报告目录")]
  857. [Nullable(true)]
  858. [DataLength(200)]
  859. public string SpecResultPath
  860. {
  861. get { return specResultPath; }
  862. set { specResultPath = value; }
  863. }
  864. /// <summary>
  865. /// 成分检验报告目录
  866. /// </summary>
  867. [Description("成分检验报告目录")]
  868. [Nullable(true)]
  869. [DataLength(200)]
  870. public string ChemResultPath
  871. {
  872. get { return chemResultPath; }
  873. set { chemResultPath = value; }
  874. }
  875. /// <summary>
  876. /// 理化检验报告目录
  877. /// </summary>
  878. [Description("理化检验报告目录")]
  879. [Nullable(true)]
  880. [DataLength(200)]
  881. public string PhyResultPath
  882. {
  883. get { return phyResultPath; }
  884. set { phyResultPath = value; }
  885. }
  886. /// <summary>
  887. /// 探伤检验报告目录
  888. /// </summary>
  889. [Description("探伤检验报告目录")]
  890. [Nullable(true)]
  891. [DataLength(200)]
  892. public string DetectResultPath
  893. {
  894. get { return detectResultPath; }
  895. set { detectResultPath = value; }
  896. }
  897. /// <summary>
  898. /// 水压检验报告目录
  899. /// </summary>
  900. [Description("水压检验报告目录")]
  901. [Nullable(true)]
  902. [DataLength(200)]
  903. public string WpressureResultPath
  904. {
  905. get { return wpressureResultPath; }
  906. set { wpressureResultPath = value; }
  907. }
  908. /// <summary>
  909. /// 加工检验报告目录
  910. /// </summary>
  911. [Description("加工检验报告目录")]
  912. [Nullable(true)]
  913. [DataLength(200)]
  914. public string ProcessResultPath
  915. {
  916. get { return processResultPath; }
  917. set { processResultPath = value; }
  918. }
  919. /// <summary>
  920. /// 状态(00:初使状态;10:判定后退判;20:已判定;15已接收 50无效)
  921. /// </summary>
  922. [Description("状态(00:初使状态;10:判定后退判;20:已判定;15已接收 50无效)")]
  923. [Nullable(true)]
  924. [DataLength(2)]
  925. public string Validflag
  926. {
  927. get { return validflag; }
  928. set { validflag = value; }
  929. }
  930. /// <summary>
  931. /// 申判人
  932. /// </summary>
  933. [Description("申判人")]
  934. [Nullable(true)]
  935. [DataLength(20)]
  936. public string ApplyName
  937. {
  938. get { return applyName; }
  939. set { applyName = value; }
  940. }
  941. /// <summary>
  942. /// 申判时间
  943. /// </summary>
  944. [Description("申判时间")]
  945. [Nullable(true)]
  946. public string ApplyTime
  947. {
  948. get { return applyTime; }
  949. set { applyTime = value; }
  950. }
  951. /// <summary>
  952. /// 申请判定备注(管捆信息)
  953. /// </summary>
  954. [Description("申请判定备注(管捆信息)")]
  955. [Nullable(true)]
  956. [DataLength(500)]
  957. public string Memo
  958. {
  959. get { return memo; }
  960. set { memo = value; }
  961. }
  962. /// <summary>
  963. /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
  964. /// </summary>
  965. [Description("质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)")]
  966. [Nullable(false)]
  967. [DataLength(22)]
  968. public decimal? QualityGroup
  969. {
  970. get { return qualityGroup; }
  971. set { qualityGroup = value; }
  972. }
  973. /// <summary>
  974. /// 产出物料码
  975. /// </summary>
  976. [Description("产出物料码")]
  977. [Nullable(true)]
  978. [DataLength(40)]
  979. public string MaterialNo
  980. {
  981. get { return materialNo; }
  982. set { materialNo = value; }
  983. }
  984. /// <summary>
  985. /// 产出物料描叙
  986. /// </summary>
  987. [Description("产出物料描叙")]
  988. [Nullable(true)]
  989. [DataLength(100)]
  990. public string MaterialName
  991. {
  992. get { return materialName; }
  993. set { materialName = value; }
  994. }
  995. /// <summary>
  996. /// 品名代码
  997. /// </summary>
  998. [Description("品名代码")]
  999. [Nullable(true)]
  1000. [DataLength(20)]
  1001. public string Produccode
  1002. {
  1003. get { return produccode; }
  1004. set { produccode = value; }
  1005. }
  1006. /// <summary>
  1007. /// 品名描述
  1008. /// </summary>
  1009. [Description("品名描述")]
  1010. [Nullable(true)]
  1011. [DataLength(100)]
  1012. public string Producname
  1013. {
  1014. get { return producname; }
  1015. set { producname = value; }
  1016. }
  1017. /// <summary>
  1018. /// 钢级(牌号)代码
  1019. /// </summary>
  1020. [Description("钢级(牌号)代码")]
  1021. [Nullable(true)]
  1022. [DataLength(10)]
  1023. public string Steelcode
  1024. {
  1025. get { return steelcode; }
  1026. set { steelcode = value; }
  1027. }
  1028. /// <summary>
  1029. /// 钢级(牌号)名称
  1030. /// </summary>
  1031. [Description("钢级(牌号)名称")]
  1032. [Nullable(true)]
  1033. [DataLength(100)]
  1034. public string Steelname
  1035. {
  1036. get { return steelname; }
  1037. set { steelname = value; }
  1038. }
  1039. /// <summary>
  1040. /// 钢种代码
  1041. /// </summary>
  1042. [Description("钢种代码")]
  1043. [Nullable(true)]
  1044. [DataLength(10)]
  1045. public string Gradecode
  1046. {
  1047. get { return gradecode; }
  1048. set { gradecode = value; }
  1049. }
  1050. /// <summary>
  1051. /// 钢种名称
  1052. /// </summary>
  1053. [Description("钢种名称")]
  1054. [Nullable(true)]
  1055. [DataLength(100)]
  1056. public string Gradename
  1057. {
  1058. get { return gradename; }
  1059. set { gradename = value; }
  1060. }
  1061. /// <summary>
  1062. /// 产品规格代码
  1063. /// </summary>
  1064. [Description("产品规格代码")]
  1065. [Nullable(true)]
  1066. [DataLength(20)]
  1067. public string SpecCode
  1068. {
  1069. get { return specCode; }
  1070. set { specCode = value; }
  1071. }
  1072. /// <summary>
  1073. /// 产品规格描述
  1074. /// </summary>
  1075. [Description("产品规格描述")]
  1076. [Nullable(true)]
  1077. [DataLength(100)]
  1078. public string SpecName
  1079. {
  1080. get { return specName; }
  1081. set { specName = value; }
  1082. }
  1083. /// <summary>
  1084. /// 扣型代码
  1085. /// </summary>
  1086. [Description("扣型代码")]
  1087. [Nullable(true)]
  1088. [DataLength(20)]
  1089. public string ModelCode
  1090. {
  1091. get { return modelCode; }
  1092. set { modelCode = value; }
  1093. }
  1094. /// <summary>
  1095. /// 扣型描述
  1096. /// </summary>
  1097. [Description("扣型描述")]
  1098. [Nullable(true)]
  1099. [DataLength(100)]
  1100. public string ModelDesc
  1101. {
  1102. get { return modelDesc; }
  1103. set { modelDesc = value; }
  1104. }
  1105. /// <summary>
  1106. /// 标准代码
  1107. /// </summary>
  1108. [Description("标准代码")]
  1109. [Nullable(true)]
  1110. [DataLength(20)]
  1111. public string StdCode
  1112. {
  1113. get { return stdCode; }
  1114. set { stdCode = value; }
  1115. }
  1116. /// <summary>
  1117. /// 标准名称
  1118. /// </summary>
  1119. [Description("标准名称")]
  1120. [Nullable(true)]
  1121. [DataLength(256)]
  1122. public string StdName
  1123. {
  1124. get { return stdName; }
  1125. set { stdName = value; }
  1126. }
  1127. /// <summary>
  1128. /// 标准类别代码
  1129. /// </summary>
  1130. [Description("标准类别代码")]
  1131. [Nullable(true)]
  1132. [DataLength(20)]
  1133. public string StdStyle
  1134. {
  1135. get { return stdStyle; }
  1136. set { stdStyle = value; }
  1137. }
  1138. /// <summary>
  1139. /// 标准类别描述(PSL1....)
  1140. /// </summary>
  1141. [Description("标准类别描述(PSL1....)")]
  1142. [Nullable(true)]
  1143. [DataLength(50)]
  1144. public string StdStyleDesc
  1145. {
  1146. get { return stdStyleDesc; }
  1147. set { stdStyleDesc = value; }
  1148. }
  1149. /// <summary>
  1150. /// 工艺文件号
  1151. /// </summary>
  1152. [Description("工艺文件号")]
  1153. [Nullable(true)]
  1154. [DataLength(100)]
  1155. public string CrafNo
  1156. {
  1157. get { return crafNo; }
  1158. set { crafNo = value; }
  1159. }
  1160. /// <summary>
  1161. /// 生产批号
  1162. /// </summary>
  1163. [Description("生产批号")]
  1164. [Nullable(true)]
  1165. [DataLength(20)]
  1166. public string LotNo
  1167. {
  1168. get { return lotNo; }
  1169. set { lotNo = value; }
  1170. }
  1171. /// <summary>
  1172. /// 生产产线名称
  1173. /// </summary>
  1174. [Description("生产产线名称")]
  1175. [Nullable(true)]
  1176. [DataLength(100)]
  1177. public string PlineName
  1178. {
  1179. get { return plineName; }
  1180. set { plineName = value; }
  1181. }
  1182. /// <summary>
  1183. /// 生产合同号(合同号)
  1184. /// </summary>
  1185. [Description("生产合同号(合同号)")]
  1186. [Nullable(true)]
  1187. [DataLength(25)]
  1188. public string ProOrderNo
  1189. {
  1190. get { return proOrderNo; }
  1191. set { proOrderNo = value; }
  1192. }
  1193. /// <summary>
  1194. /// 产品标识(ABC)
  1195. /// </summary>
  1196. [Description("产品标识(ABC)")]
  1197. [Nullable(true)]
  1198. [DataLength(20)]
  1199. public string Target
  1200. {
  1201. get { return target; }
  1202. set { target = value; }
  1203. }
  1204. /// <summary>
  1205. /// 工艺状态(轧态)
  1206. /// </summary>
  1207. [Description("工艺状态(轧态)")]
  1208. [Nullable(true)]
  1209. [DataLength(20)]
  1210. public string ProcessStatus
  1211. {
  1212. get { return processStatus; }
  1213. set { processStatus = value; }
  1214. }
  1215. /// <summary>
  1216. /// 材料去向代码
  1217. /// </summary>
  1218. [Description("材料去向代码")]
  1219. [Nullable(false)]
  1220. [DataLength(20)]
  1221. public string MatGowhereCode
  1222. {
  1223. get { return matGowhereCode; }
  1224. set { matGowhereCode = value; }
  1225. }
  1226. /// <summary>
  1227. /// 材料去向
  1228. /// </summary>
  1229. [Description("材料去向")]
  1230. [Nullable(true)]
  1231. [DataLength(40)]
  1232. public string MatGowhereName
  1233. {
  1234. get { return matGowhereName; }
  1235. set { matGowhereName = value; }
  1236. }
  1237. /// <summary>
  1238. /// 外径(实际)
  1239. /// </summary>
  1240. [Description("外径(实际)")]
  1241. [Nullable(true)]
  1242. [DataLength(5)]
  1243. public decimal? ActDimater
  1244. {
  1245. get { return actDimater; }
  1246. set { actDimater = value; }
  1247. }
  1248. /// <summary>
  1249. /// 壁厚(实际)
  1250. /// </summary>
  1251. [Description("壁厚(实际)")]
  1252. [Nullable(true)]
  1253. [DataLength(5)]
  1254. public decimal? ActHeight
  1255. {
  1256. get { return actHeight; }
  1257. set { actHeight = value; }
  1258. }
  1259. /// <summary>
  1260. /// 长度下限(实际)
  1261. /// </summary>
  1262. [Description("长度下限(实际)")]
  1263. [Nullable(true)]
  1264. [DataLength(10)]
  1265. public string ActLenMin
  1266. {
  1267. get { return actLenMin; }
  1268. set { actLenMin = value; }
  1269. }
  1270. /// <summary>
  1271. /// 长度上限(实际)
  1272. /// </summary>
  1273. [Description("长度上限(实际)")]
  1274. [Nullable(true)]
  1275. [DataLength(10)]
  1276. public string ActLenMax
  1277. {
  1278. get { return actLenMax; }
  1279. set { actLenMax = value; }
  1280. }
  1281. /// <summary>
  1282. /// 工序判定结果代码
  1283. /// </summary>
  1284. [Description("工序判定结果代码")]
  1285. [Nullable(true)]
  1286. [DataLength(10)]
  1287. public string JudgeResultCode
  1288. {
  1289. get { return judgeResultCode; }
  1290. set { judgeResultCode = value; }
  1291. }
  1292. /// <summary>
  1293. /// 工序判定结果
  1294. /// </summary>
  1295. [Description("工序判定结果")]
  1296. [Nullable(true)]
  1297. [DataLength(20)]
  1298. public string JudgeResult
  1299. {
  1300. get { return judgeResult; }
  1301. set { judgeResult = value; }
  1302. }
  1303. /// <summary>
  1304. /// 工序判定时间
  1305. /// </summary>
  1306. [Description("工序判定时间")]
  1307. [Nullable(true)]
  1308. public string JudgeResultTime
  1309. {
  1310. get { return judgeResultTime; }
  1311. set { judgeResultTime = value; }
  1312. }
  1313. /// <summary>
  1314. /// 工序判定人
  1315. /// </summary>
  1316. [Description("工序判定人")]
  1317. [Nullable(true)]
  1318. [DataLength(20)]
  1319. public string JudgeMaker
  1320. {
  1321. get { return judgeMaker; }
  1322. set { judgeMaker = value; }
  1323. }
  1324. /// <summary>
  1325. /// 是否已处理后工序炉计划
  1326. /// </summary>
  1327. [Description("是否已处理后工序炉计划")]
  1328. [Nullable(true)]
  1329. [DataLength(1)]
  1330. public string IfSetZyPlan
  1331. {
  1332. get { return ifSetZyPlan; }
  1333. set { ifSetZyPlan = value; }
  1334. }
  1335. /// <summary>
  1336. /// 探伤等级
  1337. /// </summary>
  1338. [Description("探伤等级")]
  1339. [Nullable(true)]
  1340. [DataLength(20)]
  1341. public string TestingGrade
  1342. {
  1343. get { return testingGrade; }
  1344. set { testingGrade = value; }
  1345. }
  1346. /// <summary>
  1347. /// 探伤种类
  1348. /// </summary>
  1349. [Description("探伤种类")]
  1350. [Nullable(true)]
  1351. [DataLength(20)]
  1352. public string TestingType
  1353. {
  1354. get { return testingType; }
  1355. set { testingType = value; }
  1356. }
  1357. /// <summary>
  1358. /// 探伤等级1
  1359. /// </summary>
  1360. [Description("探伤等级1")]
  1361. [Nullable(true)]
  1362. [DataLength(20)]
  1363. public string TestingGrade1
  1364. {
  1365. get { return testingGrade1; }
  1366. set { testingGrade1 = value; }
  1367. }
  1368. /// <summary>
  1369. /// 探伤种类1
  1370. /// </summary>
  1371. [Description("探伤种类1")]
  1372. [Nullable(true)]
  1373. [DataLength(20)]
  1374. public string TestingType1
  1375. {
  1376. get { return testingType1; }
  1377. set { testingType1 = value; }
  1378. }
  1379. /// <summary>
  1380. /// 探伤结果代码1
  1381. /// </summary>
  1382. [Description("探伤结果代码1")]
  1383. [Nullable(true)]
  1384. [DataLength(20)]
  1385. public string DetectResultCode1
  1386. {
  1387. get { return detectResultCode1; }
  1388. set { detectResultCode1 = value; }
  1389. }
  1390. /// <summary>
  1391. /// 探伤检验报告目录1
  1392. /// </summary>
  1393. [Description("探伤检验报告目录1")]
  1394. [Nullable(true)]
  1395. [DataLength(200)]
  1396. public string DetectResultPath1
  1397. {
  1398. get { return detectResultPath1; }
  1399. set { detectResultPath1 = value; }
  1400. }
  1401. /// <summary>
  1402. /// 交货行主键
  1403. /// </summary>
  1404. [Description("交货行主键")]
  1405. [Nullable(true)]
  1406. [DataLength(50)]
  1407. public string OrdLnDlyPk
  1408. {
  1409. get { return ordLnDlyPk; }
  1410. set { ordLnDlyPk = value; }
  1411. }
  1412. /// <summary>
  1413. /// 送判状态 (0 正常送判,1退判 (判定后),2退判(判定前))
  1414. /// </summary>
  1415. [Description("送判状态 (0 正常送判,1退判 (判定后),2退判(判定前))")]
  1416. [Nullable(true)]
  1417. [DataLength(1)]
  1418. public string ApplyFlag
  1419. {
  1420. get { return applyFlag; }
  1421. set { applyFlag = value; }
  1422. }
  1423. /// <summary>
  1424. /// 退判原因
  1425. /// </summary>
  1426. [Description("退判原因")]
  1427. [Nullable(true)]
  1428. [DataLength(200)]
  1429. public string BackJugdeMemo
  1430. {
  1431. get { return backJugdeMemo; }
  1432. set { backJugdeMemo = value; }
  1433. }
  1434. /// <summary>
  1435. /// 缴库标志(1是、0否)
  1436. /// </summary>
  1437. [Description("缴库标志(1是、0否)")]
  1438. [Nullable(true)]
  1439. [DataLength(1)]
  1440. public string InstockFlag
  1441. {
  1442. get { return instockFlag; }
  1443. set { instockFlag = value; }
  1444. }
  1445. /// <summary>
  1446. /// 所属权单位代码
  1447. /// </summary>
  1448. [Description("所属权单位代码")]
  1449. [Nullable(true)]
  1450. [DataLength(40)]
  1451. public string BelongCode
  1452. {
  1453. get { return belongCode; }
  1454. set { belongCode = value; }
  1455. }
  1456. /// <summary>
  1457. /// 所属权单位
  1458. /// </summary>
  1459. [Description("所属权单位")]
  1460. [Nullable(true)]
  1461. [DataLength(50)]
  1462. public string BelongName
  1463. {
  1464. get { return belongName; }
  1465. set { belongName = value; }
  1466. }
  1467. /// <summary>
  1468. /// 是否末工序(末工序时合同成品属性有效)
  1469. /// </summary>
  1470. [Description("是否末工序(末工序时合同成品属性有效)")]
  1471. [Nullable(true)]
  1472. [DataLength(1)]
  1473. public string Isendgx
  1474. {
  1475. get { return isendgx; }
  1476. set { isendgx = value; }
  1477. }
  1478. /// <summary>
  1479. /// 终轧温度
  1480. /// </summary>
  1481. [Description("终轧温度")]
  1482. [Nullable(true)]
  1483. [DataLength(6)]
  1484. public decimal? ExitTemp
  1485. {
  1486. get { return exitTemp; }
  1487. set { exitTemp = value; }
  1488. }
  1489. /// <summary>
  1490. /// 样管信息
  1491. /// </summary>
  1492. [Description("样管信息")]
  1493. [Nullable(true)]
  1494. [DataLength(200)]
  1495. public string SampleNews
  1496. {
  1497. get { return sampleNews; }
  1498. set { sampleNews = value; }
  1499. }
  1500. /// <summary>
  1501. /// 长度(实际)
  1502. /// </summary>
  1503. [Description("长度(实际)")]
  1504. [Nullable(true)]
  1505. [DataLength(15)]
  1506. public decimal? ActLen
  1507. {
  1508. get { return actLen; }
  1509. set { actLen = value; }
  1510. }
  1511. /// <summary>
  1512. /// 所属权单位代码(判定后)
  1513. /// </summary>
  1514. [Description("所属权单位代码(判定后)")]
  1515. [Nullable(true)]
  1516. [DataLength(40)]
  1517. public string BelongCodeJugde
  1518. {
  1519. get { return belongCodeJugde; }
  1520. set { belongCodeJugde = value; }
  1521. }
  1522. /// <summary>
  1523. /// 所属权单位(判定后)
  1524. /// </summary>
  1525. [Description("所属权单位(判定后)")]
  1526. [Nullable(true)]
  1527. [DataLength(50)]
  1528. public string BelongNameJugde
  1529. {
  1530. get { return belongNameJugde; }
  1531. set { belongNameJugde = value; }
  1532. }
  1533. /// <summary>
  1534. /// 工序排产序号
  1535. /// </summary>
  1536. [Description("工序排产序号")]
  1537. [Nullable(true)]
  1538. [DataLength(10)]
  1539. public string GxPlanNo
  1540. {
  1541. get { return gxPlanNo; }
  1542. set { gxPlanNo = value; }
  1543. }
  1544. /// <summary>
  1545. /// 投料量
  1546. /// </summary>
  1547. [Description("投料量")]
  1548. [Nullable(true)]
  1549. [DataLength(9)]
  1550. public decimal? InputWeight
  1551. {
  1552. get { return inputWeight; }
  1553. set { inputWeight = value; }
  1554. }
  1555. /// <summary>
  1556. /// 投料支数(单倍坯)
  1557. /// </summary>
  1558. [Description("投料支数(单倍坯)")]
  1559. [Nullable(true)]
  1560. [DataLength(5)]
  1561. public decimal? InputCount
  1562. {
  1563. get { return inputCount; }
  1564. set { inputCount = value; }
  1565. }
  1566. /// <summary>
  1567. /// 判定吨(原料)+废品吨(单倍坯) (出)
  1568. /// </summary>
  1569. [Description("判定吨(原料)+废品吨(单倍坯) (出)")]
  1570. [Nullable(true)]
  1571. [DataLength(9)]
  1572. public decimal? OutputWeight
  1573. {
  1574. get { return outputWeight; }
  1575. set { outputWeight = value; }
  1576. }
  1577. /// <summary>
  1578. /// 判定支(原料)+废品支(单倍坯)
  1579. /// </summary>
  1580. [Description("判定支(原料)+废品支(单倍坯)")]
  1581. [Nullable(true)]
  1582. [DataLength(5)]
  1583. public decimal? OutputCount
  1584. {
  1585. get { return outputCount; }
  1586. set { outputCount = value; }
  1587. }
  1588. /// <summary>
  1589. /// 结转年月
  1590. /// </summary>
  1591. [Description("结转年月")]
  1592. [Nullable(true)]
  1593. [DataLength(6)]
  1594. public string BalYearMonth
  1595. {
  1596. get { return balYearMonth; }
  1597. set { balYearMonth = value; }
  1598. }
  1599. /// <summary>
  1600. /// 是否有效(0 有效 1 无效)
  1601. /// </summary>
  1602. [Description("是否有效(0 有效 1 无效)")]
  1603. [Nullable(true)]
  1604. [DataLength(1)]
  1605. public string IsFlag
  1606. {
  1607. get { return isFlag; }
  1608. set { isFlag = value; }
  1609. }
  1610. /// <summary>
  1611. /// 判定类型(0,正常 1整炉废 2白条 3红冲)
  1612. /// </summary>
  1613. [Description("判定类型(0,正常 1整炉废 2白条 3红冲)")]
  1614. [Nullable(true)]
  1615. [DataLength(1)]
  1616. public string IsAllScrap
  1617. {
  1618. get { return isAllScrap; }
  1619. set { isAllScrap = value; }
  1620. }
  1621. /// <summary>
  1622. /// 是否结转(0 未结转 1结转)
  1623. /// </summary>
  1624. [Description("是否结转(0 未结转 1结转)")]
  1625. [Nullable(true)]
  1626. [DataLength(1)]
  1627. public string IsCarryVoer
  1628. {
  1629. get { return isCarryVoer; }
  1630. set { isCarryVoer = value; }
  1631. }
  1632. /// <summary>
  1633. /// 熔炼炉号
  1634. /// </summary>
  1635. [Description("熔炼炉号")]
  1636. [Nullable(true)]
  1637. [DataLength(10)]
  1638. public string StoveNo
  1639. {
  1640. get { return stoveNo; }
  1641. set { stoveNo = value; }
  1642. }
  1643. /// <summary>
  1644. /// 轧管判定标准(技术标准)
  1645. /// </summary>
  1646. [Description("轧管判定标准(技术标准)")]
  1647. [Nullable(true)]
  1648. [DataLength(200)]
  1649. public string SteelStandrad
  1650. {
  1651. get { return steelStandrad; }
  1652. set { steelStandrad = value; }
  1653. }
  1654. /// <summary>
  1655. /// 订单编号(下一工序订单)
  1656. /// </summary>
  1657. [Description("订单编号(下一工序订单)")]
  1658. [Nullable(true)]
  1659. [DataLength(20)]
  1660. public string ProPlanIdNext
  1661. {
  1662. get { return proPlanIdNext; }
  1663. set { proPlanIdNext = value; }
  1664. }
  1665. /// <summary>
  1666. /// 工序排产序号
  1667. /// </summary>
  1668. [Description("工序排产序号")]
  1669. [Nullable(true)]
  1670. [DataLength(10)]
  1671. public string GxPlanNoNext
  1672. {
  1673. get { return gxPlanNoNext; }
  1674. set { gxPlanNoNext = value; }
  1675. }
  1676. /// <summary>
  1677. /// 利库标识(0,正常,1,利库)
  1678. /// </summary>
  1679. [Description("利库标识(0,正常,1,利库)")]
  1680. [Nullable(true)]
  1681. [DataLength(1)]
  1682. public string LkFlag
  1683. {
  1684. get { return lkFlag; }
  1685. set { lkFlag = value; }
  1686. }
  1687. /// <summary>
  1688. /// 工序判定备注
  1689. /// </summary>
  1690. [Description("工序判定备注")]
  1691. [Nullable(true)]
  1692. [DataLength(500)]
  1693. public string JudgeMemo
  1694. {
  1695. get { return judgeMemo; }
  1696. set { judgeMemo = value; }
  1697. }
  1698. /// <summary>
  1699. /// 工序判定班次
  1700. /// </summary>
  1701. [Description("工序判定班次")]
  1702. [Nullable(true)]
  1703. [DataLength(10)]
  1704. public string JudgeOrder
  1705. {
  1706. get { return judgeOrder; }
  1707. set { judgeOrder = value; }
  1708. }
  1709. /// <summary>
  1710. /// 工序判定班组
  1711. /// </summary>
  1712. [Description("工序判定班组")]
  1713. [Nullable(true)]
  1714. [DataLength(10)]
  1715. public string JudgeGroup
  1716. {
  1717. get { return judgeGroup; }
  1718. set { judgeGroup = value; }
  1719. }
  1720. /// <summary>
  1721. /// 判定炉号(带序号)
  1722. /// </summary>
  1723. [Description("判定炉号(带序号)")]
  1724. [Nullable(true)]
  1725. [DataLength(50)]
  1726. public string JudgeStoveNoSeq
  1727. {
  1728. get { return judgeStoveNoSeq; }
  1729. set { judgeStoveNoSeq = value; }
  1730. }
  1731. /// <summary>
  1732. /// 下工序代码
  1733. /// </summary>
  1734. [Description("下工序代码")]
  1735. [Nullable(true)]
  1736. [DataLength(8)]
  1737. public string NextProcessCdoe
  1738. {
  1739. get { return nextProcessCdoe; }
  1740. set { nextProcessCdoe = value; }
  1741. }
  1742. /// <summary>
  1743. /// 申请判定顺序号
  1744. /// </summary>
  1745. [Description("申请判定顺序号")]
  1746. [Nullable(false)]
  1747. [DataLength(3)]
  1748. public string JugdeApplySequeno
  1749. {
  1750. get { return jugdeApplySequeno; }
  1751. set { jugdeApplySequeno = value; }
  1752. }
  1753. /// <summary>
  1754. /// 工序不合格处置方式
  1755. /// </summary>
  1756. [Description("工序不合格处置方式")]
  1757. [Nullable(true)]
  1758. [DataLength(20)]
  1759. public string AuditResult
  1760. {
  1761. get { return auditResult; }
  1762. set { auditResult = value; }
  1763. }
  1764. /// <summary>
  1765. /// 工序不合格处置备注
  1766. /// </summary>
  1767. [Description("工序不合格处置备注")]
  1768. [Nullable(true)]
  1769. [DataLength(500)]
  1770. public string AuditMemo
  1771. {
  1772. get { return auditMemo; }
  1773. set { auditMemo = value; }
  1774. }
  1775. /// <summary>
  1776. /// 综合判定结果代码
  1777. /// </summary>
  1778. [Description("综合判定结果代码")]
  1779. [Nullable(true)]
  1780. [DataLength(10)]
  1781. public string JudgeTolresultCode
  1782. {
  1783. get { return judgeTolresultCode; }
  1784. set { judgeTolresultCode = value; }
  1785. }
  1786. /// <summary>
  1787. /// 综合判定结果
  1788. /// </summary>
  1789. [Description("综合判定结果")]
  1790. [Nullable(true)]
  1791. [DataLength(20)]
  1792. public string JudgeTolresult
  1793. {
  1794. get { return judgeTolresult; }
  1795. set { judgeTolresult = value; }
  1796. }
  1797. /// <summary>
  1798. /// 综合判定时间
  1799. /// </summary>
  1800. [Description("综合判定时间")]
  1801. [Nullable(true)]
  1802. public string JudgeTolresultTime
  1803. {
  1804. get { return judgeTolresultTime; }
  1805. set { judgeTolresultTime = value; }
  1806. }
  1807. /// <summary>
  1808. /// 综合判定人
  1809. /// </summary>
  1810. [Description("综合判定人")]
  1811. [Nullable(true)]
  1812. [DataLength(20)]
  1813. public string JudgeTolmaker
  1814. {
  1815. get { return judgeTolmaker; }
  1816. set { judgeTolmaker = value; }
  1817. }
  1818. /// <summary>
  1819. /// 综合判定备注
  1820. /// </summary>
  1821. [Description("综合判定备注")]
  1822. [Nullable(true)]
  1823. [DataLength(500)]
  1824. public string JudgeTolmemo
  1825. {
  1826. get { return judgeTolmemo; }
  1827. set { judgeTolmemo = value; }
  1828. }
  1829. /// <summary>
  1830. /// 综合判定班次
  1831. /// </summary>
  1832. [Description("综合判定班次")]
  1833. [Nullable(true)]
  1834. [DataLength(10)]
  1835. public string JudgeTolorder
  1836. {
  1837. get { return judgeTolorder; }
  1838. set { judgeTolorder = value; }
  1839. }
  1840. /// <summary>
  1841. /// 综合判定班组
  1842. /// </summary>
  1843. [Description("综合判定班组")]
  1844. [Nullable(true)]
  1845. [DataLength(10)]
  1846. public string JudgeTolgroup
  1847. {
  1848. get { return judgeTolgroup; }
  1849. set { judgeTolgroup = value; }
  1850. }
  1851. /// <summary>
  1852. /// 综合不合格处置方式
  1853. /// </summary>
  1854. [Description("综合不合格处置方式")]
  1855. [Nullable(true)]
  1856. [DataLength(20)]
  1857. public string AuditTolresult
  1858. {
  1859. get { return auditTolresult; }
  1860. set { auditTolresult = value; }
  1861. }
  1862. /// <summary>
  1863. /// 综合不合格处置备注
  1864. /// </summary>
  1865. [Description("综合不合格处置备注")]
  1866. [Nullable(true)]
  1867. [DataLength(500)]
  1868. public string AuditTolmemo
  1869. {
  1870. get { return auditTolmemo; }
  1871. set { auditTolmemo = value; }
  1872. }
  1873. /// <summary>
  1874. /// 工序综合判定单号
  1875. /// </summary>
  1876. [Description("工序综合判定单号")]
  1877. [Nullable(true)]
  1878. [DataLength(40)]
  1879. public string JugdeConvicted
  1880. {
  1881. get { return jugdeConvicted; }
  1882. set { jugdeConvicted = value; }
  1883. }
  1884. /// <summary>
  1885. /// 成品综合判定单号
  1886. /// </summary>
  1887. [Description("成品综合判定单号")]
  1888. [Nullable(true)]
  1889. [DataLength(40)]
  1890. public string JugdeTolconvicted
  1891. {
  1892. get { return jugdeTolconvicted; }
  1893. set { jugdeTolconvicted = value; }
  1894. }
  1895. /// <summary>
  1896. /// 半成品是否紧急放行(0正常,1紧急放行)
  1897. /// </summary>
  1898. [Description("半成品是否紧急放行(0正常,1紧急放行)")]
  1899. [Nullable(true)]
  1900. [DataLength(1)]
  1901. public string InstancyFlag
  1902. {
  1903. get { return instancyFlag; }
  1904. set { instancyFlag = value; }
  1905. }
  1906. /// <summary>
  1907. /// 成品是否紧急放行(0正常,1紧急放行)
  1908. /// </summary>
  1909. [Description("成品是否紧急放行(0正常,1紧急放行)")]
  1910. [Nullable(true)]
  1911. [DataLength(1)]
  1912. public string TolInstancyFlag
  1913. {
  1914. get { return tolInstancyFlag; }
  1915. set { tolInstancyFlag = value; }
  1916. }
  1917. /// <summary>
  1918. /// 工艺序号
  1919. /// </summary>
  1920. [Description("工艺序号")]
  1921. [Nullable(true)]
  1922. [DataLength(5)]
  1923. public decimal? CraftSeq
  1924. {
  1925. get { return craftSeq; }
  1926. set { craftSeq = value; }
  1927. }
  1928. /// <summary>
  1929. /// 主制程索引号
  1930. /// </summary>
  1931. [Description("主制程索引号")]
  1932. [Nullable(true)]
  1933. [DataLength(32)]
  1934. public string IndexSeq
  1935. {
  1936. get { return indexSeq; }
  1937. set { indexSeq = value; }
  1938. }
  1939. /// <summary>
  1940. /// 成分标准索引号(内控)
  1941. /// </summary>
  1942. [Description("成分标准索引号(内控)")]
  1943. [Nullable(true)]
  1944. [DataLength(100)]
  1945. public string Cic
  1946. {
  1947. get { return cic; }
  1948. set { cic = value; }
  1949. }
  1950. /// <summary>
  1951. /// 材质标准索引号(内控)
  1952. /// </summary>
  1953. [Description("材质标准索引号(内控)")]
  1954. [Nullable(true)]
  1955. [DataLength(100)]
  1956. public string Pic
  1957. {
  1958. get { return pic; }
  1959. set { pic = value; }
  1960. }
  1961. /// <summary>
  1962. /// 公差标准索引号(内控)
  1963. /// </summary>
  1964. [Description("公差标准索引号(内控)")]
  1965. [Nullable(true)]
  1966. [DataLength(100)]
  1967. public string Sic
  1968. {
  1969. get { return sic; }
  1970. set { sic = value; }
  1971. }
  1972. /// <summary>
  1973. /// 探伤标准索引号(内控)
  1974. /// </summary>
  1975. [Description("探伤标准索引号(内控)")]
  1976. [Nullable(true)]
  1977. [DataLength(100)]
  1978. public string Dic
  1979. {
  1980. get { return dic; }
  1981. set { dic = value; }
  1982. }
  1983. /// <summary>
  1984. /// 水压标准索引号(内控)
  1985. /// </summary>
  1986. [Description("水压标准索引号(内控)")]
  1987. [Nullable(true)]
  1988. [DataLength(100)]
  1989. public string Wic
  1990. {
  1991. get { return wic; }
  1992. set { wic = value; }
  1993. }
  1994. /// <summary>
  1995. /// 加工标准索引号(内控)
  1996. /// </summary>
  1997. [Description("加工标准索引号(内控)")]
  1998. [Nullable(true)]
  1999. [DataLength(100)]
  2000. public string Gic
  2001. {
  2002. get { return gic; }
  2003. set { gic = value; }
  2004. }
  2005. /// <summary>
  2006. /// 下工序炉次计划号
  2007. /// </summary>
  2008. [Description("下工序炉次计划号")]
  2009. [Nullable(true)]
  2010. [DataLength(20)]
  2011. public string HeatPlanNoNext
  2012. {
  2013. get { return heatPlanNoNext; }
  2014. set { heatPlanNoNext = value; }
  2015. }
  2016. /// <summary>
  2017. /// 检验编号
  2018. /// </summary>
  2019. [Description("检验编号")]
  2020. [Nullable(true)]
  2021. [DataLength(400)]
  2022. public string CheckNo
  2023. {
  2024. get { return checkNo; }
  2025. set { checkNo = value; }
  2026. }
  2027. /// <summary>
  2028. /// 本工序炉计划ID
  2029. /// </summary>
  2030. [Description("本工序炉计划ID")]
  2031. [Nullable(true)]
  2032. [DataLength(20)]
  2033. public string HeatPlanNo
  2034. {
  2035. get { return heatPlanNo; }
  2036. set { heatPlanNo = value; }
  2037. }
  2038. /// <summary>
  2039. /// 交货状态代码(4100)
  2040. /// </summary>
  2041. [Description("交货状态代码(4100)")]
  2042. [Nullable(true)]
  2043. [DataLength(20)]
  2044. public string DeliveryStateCode
  2045. {
  2046. get { return deliveryStateCode; }
  2047. set { deliveryStateCode = value; }
  2048. }
  2049. /// <summary>
  2050. /// 交货状态名称
  2051. /// </summary>
  2052. [Description("交货状态名称")]
  2053. [Nullable(true)]
  2054. [DataLength(32)]
  2055. public string DeliveryStateName
  2056. {
  2057. get { return deliveryStateName; }
  2058. set { deliveryStateName = value; }
  2059. }
  2060. /// <summary>
  2061. /// 上料炉号
  2062. /// </summary>
  2063. [Description("上料炉号")]
  2064. [Nullable(true)]
  2065. [DataLength(6)]
  2066. public string LoadJudgeStoveNo
  2067. {
  2068. get { return loadJudgeStoveNo; }
  2069. set { loadJudgeStoveNo = value; }
  2070. }
  2071. /// <summary>
  2072. /// 组批主炉号(炉号+批号)
  2073. /// </summary>
  2074. [Description("组批主炉号(炉号+批号)")]
  2075. [Nullable(true)]
  2076. [DataLength(64)]
  2077. public string ZpMLh
  2078. {
  2079. get { return zpMLh; }
  2080. set { zpMLh = value; }
  2081. }
  2082. /// <summary>
  2083. /// 组批炉号集合逗号分隔(炉号1+批号1,炉号2+批号2)
  2084. /// </summary>
  2085. [Description("组批炉号集合逗号分隔(炉号1+批号1,炉号2+批号2)")]
  2086. [Nullable(true)]
  2087. [DataLength(256)]
  2088. public string ZpColl
  2089. {
  2090. get { return zpColl; }
  2091. set { zpColl = value; }
  2092. }
  2093. /// <summary>
  2094. /// 热处理状态
  2095. /// </summary>
  2096. [Description("热处理状态")]
  2097. [Nullable(true)]
  2098. [DataLength(20)]
  2099. public string HttType
  2100. {
  2101. get { return httType; }
  2102. set { httType = value; }
  2103. }
  2104. /// <summary>
  2105. /// 最低回火温度
  2106. /// </summary>
  2107. [Description("最低回火温度")]
  2108. [Nullable(true)]
  2109. [DataLength(50)]
  2110. public string MinTemp
  2111. {
  2112. get { return minTemp; }
  2113. set { minTemp = value; }
  2114. }
  2115. /// <summary>
  2116. /// 热处理工艺制度
  2117. /// </summary>
  2118. [Description("热处理工艺制度")]
  2119. [Nullable(true)]
  2120. [DataLength(50)]
  2121. public string HttTechnology
  2122. {
  2123. get { return httTechnology; }
  2124. set { httTechnology = value; }
  2125. }
  2126. /// <summary>
  2127. /// 样管刻槽信息
  2128. /// </summary>
  2129. [Description("样管刻槽信息")]
  2130. [Nullable(true)]
  2131. [DataLength(50)]
  2132. public string NotchInfo
  2133. {
  2134. get { return notchInfo; }
  2135. set { notchInfo = value; }
  2136. }
  2137. /// <summary>
  2138. /// 槽长
  2139. /// </summary>
  2140. [Description("槽长")]
  2141. [Nullable(true)]
  2142. [DataLength(50)]
  2143. public string NotchLength
  2144. {
  2145. get { return notchLength; }
  2146. set { notchLength = value; }
  2147. }
  2148. /// <summary>
  2149. /// 槽宽
  2150. /// </summary>
  2151. [Description("槽宽")]
  2152. [Nullable(true)]
  2153. [DataLength(50)]
  2154. public string NotchWidth
  2155. {
  2156. get { return notchWidth; }
  2157. set { notchWidth = value; }
  2158. }
  2159. /// <summary>
  2160. /// 槽深
  2161. /// </summary>
  2162. [Description("槽深")]
  2163. [Nullable(true)]
  2164. [DataLength(50)]
  2165. public string NotchDepth
  2166. {
  2167. get { return notchDepth; }
  2168. set { notchDepth = value; }
  2169. }
  2170. /// <summary>
  2171. /// 生产批下炉归组
  2172. /// </summary>
  2173. [Description("生产批下炉归组")]
  2174. [Nullable(true)]
  2175. [DataLength(10)]
  2176. public string LotNoGroup
  2177. {
  2178. get { return lotNoGroup; }
  2179. set { lotNoGroup = value; }
  2180. }
  2181. /// <summary>
  2182. /// 水压压力PSI
  2183. /// </summary>
  2184. [Description("水压压力PSI")]
  2185. [Nullable(true)]
  2186. [DataLength(10)]
  2187. public string TestPressure
  2188. {
  2189. get { return testPressure; }
  2190. set { testPressure = value; }
  2191. }
  2192. /// <summary>
  2193. /// 保压时间S
  2194. /// </summary>
  2195. [Description("保压时间S")]
  2196. [Nullable(true)]
  2197. [DataLength(10)]
  2198. public string HoldtimeTime
  2199. {
  2200. get { return holdtimeTime; }
  2201. set { holdtimeTime = value; }
  2202. }
  2203. /// <summary>
  2204. /// 水压压力MPA
  2205. /// </summary>
  2206. [Description("水压压力MPA")]
  2207. [Nullable(true)]
  2208. [DataLength(10)]
  2209. public string TestPressureY
  2210. {
  2211. get { return testPressureY; }
  2212. set { testPressureY = value; }
  2213. }
  2214. /// <summary>
  2215. /// 加工水压结果
  2216. /// </summary>
  2217. [Description("加工水压结果")]
  2218. [Nullable(true)]
  2219. [DataLength(10)]
  2220. public string MchWatergageResult
  2221. {
  2222. get { return mchWatergageResult; }
  2223. set { mchWatergageResult = value; }
  2224. }
  2225. /// <summary>
  2226. /// 加工通径结果
  2227. /// </summary>
  2228. [Description("加工通径结果")]
  2229. [Nullable(true)]
  2230. [DataLength(10)]
  2231. public string MchPathResult
  2232. {
  2233. get { return mchPathResult; }
  2234. set { mchPathResult = value; }
  2235. }
  2236. /// <summary>
  2237. /// 加工倒棱结果
  2238. /// </summary>
  2239. [Description("加工倒棱结果")]
  2240. [Nullable(true)]
  2241. [DataLength(10)]
  2242. public string MchChamferingResult
  2243. {
  2244. get { return mchChamferingResult; }
  2245. set { mchChamferingResult = value; }
  2246. }
  2247. /// <summary>
  2248. /// 加工拧接结果
  2249. /// </summary>
  2250. [Description("加工拧接结果")]
  2251. [Nullable(true)]
  2252. [DataLength(10)]
  2253. public string MchTwistinglyResult
  2254. {
  2255. get { return mchTwistinglyResult; }
  2256. set { mchTwistinglyResult = value; }
  2257. }
  2258. /// <summary>
  2259. /// 加工几何尺寸结果
  2260. /// </summary>
  2261. [Description("加工几何尺寸结果")]
  2262. [Nullable(true)]
  2263. [DataLength(10)]
  2264. public string MchDimensionsResult
  2265. {
  2266. get { return mchDimensionsResult; }
  2267. set { mchDimensionsResult = value; }
  2268. }
  2269. /// <summary>
  2270. /// 加工表面质量结果
  2271. /// </summary>
  2272. [Description("加工表面质量结果")]
  2273. [Nullable(true)]
  2274. [DataLength(10)]
  2275. public string MchVisualResult
  2276. {
  2277. get { return mchVisualResult; }
  2278. set { mchVisualResult = value; }
  2279. }
  2280. /// <summary>
  2281. /// 加工螺纹检验结果
  2282. /// </summary>
  2283. [Description("加工螺纹检验结果")]
  2284. [Nullable(true)]
  2285. [DataLength(10)]
  2286. public string MchThreadInspectionResult
  2287. {
  2288. get { return mchThreadInspectionResult; }
  2289. set { mchThreadInspectionResult = value; }
  2290. }
  2291. /// <summary>
  2292. /// 加工剩磁结果
  2293. /// </summary>
  2294. [Description("加工剩磁结果")]
  2295. [Nullable(true)]
  2296. [DataLength(10)]
  2297. public string MchRemanenceResult
  2298. {
  2299. get { return mchRemanenceResult; }
  2300. set { mchRemanenceResult = value; }
  2301. }
  2302. /// <summary>
  2303. /// 加工放射性结果
  2304. /// </summary>
  2305. [Description("加工放射性结果")]
  2306. [Nullable(true)]
  2307. [DataLength(10)]
  2308. public string MchRadioactivityResult
  2309. {
  2310. get { return mchRadioactivityResult; }
  2311. set { mchRadioactivityResult = value; }
  2312. }
  2313. /// <summary>
  2314. /// 加工坡口结果
  2315. /// </summary>
  2316. [Description("加工坡口结果")]
  2317. [Nullable(true)]
  2318. [DataLength(10)]
  2319. public string MchBevelResult
  2320. {
  2321. get { return mchBevelResult; }
  2322. set { mchBevelResult = value; }
  2323. }
  2324. /// <summary>
  2325. /// 坡口角度
  2326. /// </summary>
  2327. [Description("坡口角度")]
  2328. [Nullable(true)]
  2329. [DataLength(20)]
  2330. public string AngleVal
  2331. {
  2332. get { return angleVal; }
  2333. set { angleVal = value; }
  2334. }
  2335. /// <summary>
  2336. /// 钝边
  2337. /// </summary>
  2338. [Description("钝边")]
  2339. [Nullable(true)]
  2340. [DataLength(20)]
  2341. public string EdgeVal
  2342. {
  2343. get { return edgeVal; }
  2344. set { edgeVal = value; }
  2345. }
  2346. /// <summary>
  2347. /// 质保书来源(1,产销出质保书 2,老系统出质保书)
  2348. /// </summary>
  2349. [Description("质保书来源(1,产销出质保书 2,老系统出质保书)")]
  2350. [Nullable(true)]
  2351. [DataLength(1)]
  2352. public string ZbsFlag
  2353. {
  2354. get { return zbsFlag; }
  2355. set { zbsFlag = value; }
  2356. }
  2357. /// <summary>
  2358. /// 探伤标准
  2359. /// </summary>
  2360. [Description("探伤标准")]
  2361. [Nullable(true)]
  2362. [DataLength(200)]
  2363. public string TestingStandar
  2364. {
  2365. get { return testingStandar; }
  2366. set { testingStandar = value; }
  2367. }
  2368. /// <summary>
  2369. /// 通径头最小尺寸
  2370. /// </summary>
  2371. [Description("通径头最小尺寸")]
  2372. [Nullable(true)]
  2373. [DataLength(6)]
  2374. public decimal? DriftModelMin
  2375. {
  2376. get { return driftModelMin; }
  2377. set { driftModelMin = value; }
  2378. }
  2379. /// <summary>
  2380. /// 测量-端部
  2381. /// </summary>
  2382. [Description("测量-端部")]
  2383. [Nullable(true)]
  2384. [DataLength(6)]
  2385. public decimal? MeasuredEndPart
  2386. {
  2387. get { return measuredEndPart; }
  2388. set { measuredEndPart = value; }
  2389. }
  2390. /// <summary>
  2391. /// 测量-中部
  2392. /// </summary>
  2393. [Description("测量-中部")]
  2394. [Nullable(true)]
  2395. [DataLength(6)]
  2396. public decimal? MeasuredMiddlePart
  2397. {
  2398. get { return measuredMiddlePart; }
  2399. set { measuredMiddlePart = value; }
  2400. }
  2401. /// <summary>
  2402. /// 测量-尾部
  2403. /// </summary>
  2404. [Description("测量-尾部")]
  2405. [Nullable(true)]
  2406. [DataLength(6)]
  2407. public decimal? MeasuredTailPart
  2408. {
  2409. get { return measuredTailPart; }
  2410. set { measuredTailPart = value; }
  2411. }
  2412. }
  2413. }