SlmOrderLineNextEntity.cs 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.pss.plan.order.model
  7. {
  8. public class SlmOrderLineNextEntity
  9. {
  10. /// <summary>
  11. /// ORD_PK
  12. /// </summary>
  13. private object ordPk;
  14. /// <summary>
  15. /// ORD_LN_PK(ORD_PK+三位流失号)
  16. /// </summary>
  17. private object ordLnPk;
  18. /// <summary>
  19. /// 合同号(记录创建时如无合同号,形成LS+YYMMDD+三位流水号的临时合同号
  20. /// </summary>
  21. private object orderNo;
  22. /// <summary>
  23. /// 合同行号(ORD_PK向下三位流水号,确保流水号的连续性)
  24. /// </summary>
  25. private object orderSeq;
  26. /// <summary>
  27. /// 客户Alpha编号
  28. /// </summary>
  29. private object custAlphaNo;
  30. /// <summary>
  31. /// 产品规范码
  32. /// </summary>
  33. private object psc;
  34. /// <summary>
  35. /// 产品规范描述
  36. /// </summary>
  37. private object pscDesc;
  38. /// <summary>
  39. /// 冶金规范码
  40. /// </summary>
  41. private object msc;
  42. /// <summary>
  43. /// 冶金规范描述
  44. /// </summary>
  45. private object mscDesc;
  46. /// <summary>
  47. /// 冶金规范类型(A:钢管+管坯、B:钢管+接箍、C:短节+附件)
  48. /// </summary>
  49. private object mscStyle;
  50. /// <summary>
  51. /// 用途码
  52. /// </summary>
  53. private object useCode;
  54. /// <summary>
  55. /// 用途码描述
  56. /// </summary>
  57. private object useDesc;
  58. /// <summary>
  59. /// 品种分类(油井管;专业管;普管)
  60. /// </summary>
  61. private object prdCls;
  62. /// <summary>
  63. /// 品名代码
  64. /// </summary>
  65. private object produccode;
  66. /// <summary>
  67. /// 品名描述
  68. /// </summary>
  69. private object producname;
  70. /// <summary>
  71. /// 标准代码
  72. /// </summary>
  73. private object stdCode;
  74. /// <summary>
  75. /// 标准名称
  76. /// </summary>
  77. private object stdName;
  78. /// <summary>
  79. /// 钢级(牌号)代码
  80. /// </summary>
  81. private object steelcode;
  82. /// <summary>
  83. /// 钢级(牌号)名称
  84. /// </summary>
  85. private object steelname;
  86. /// <summary>
  87. /// 标准类别代码
  88. /// </summary>
  89. private object stdStyle;
  90. /// <summary>
  91. /// 标准类别描述
  92. /// </summary>
  93. private object stdStyleDesc;
  94. /// <summary>
  95. /// 订货规格代码(用于合同、质保书、标牌、标识)
  96. /// </summary>
  97. private object orderSpecCode;
  98. /// <summary>
  99. /// 订货规格描述(用于合同、质保书、标牌、标识)
  100. /// </summary>
  101. private object orderSpecDesc;
  102. /// <summary>
  103. /// 产品规格代码
  104. /// </summary>
  105. private object specCode;
  106. /// <summary>
  107. /// 产品规格描述
  108. /// </summary>
  109. private object specName;
  110. /// <summary>
  111. /// 外径(mm)
  112. /// </summary>
  113. private object dimater;
  114. /// <summary>
  115. /// 壁厚(mm)
  116. /// </summary>
  117. private object height;
  118. /// <summary>
  119. /// 扣型代码
  120. /// </summary>
  121. private object modelCode;
  122. /// <summary>
  123. /// 扣型描述
  124. /// </summary>
  125. private object modelDesc;
  126. /// <summary>
  127. /// 长度编码
  128. /// </summary>
  129. private object lenNo;
  130. /// <summary>
  131. /// 长度描述
  132. /// </summary>
  133. private object lenDesc;
  134. /// <summary>
  135. /// 长度单位
  136. /// </summary>
  137. private object lenUnit;
  138. /// <summary>
  139. /// 下限
  140. /// </summary>
  141. private object lenMin;
  142. /// <summary>
  143. /// 上限
  144. /// </summary>
  145. private object lenMax;
  146. /// <summary>
  147. /// 短尺率(%)
  148. /// </summary>
  149. private object shrtLenRato;
  150. /// <summary>
  151. /// 短尺最短
  152. /// </summary>
  153. private object shortest;
  154. /// <summary>
  155. /// 长尺率(%)
  156. /// </summary>
  157. private object longLenRato;
  158. /// <summary>
  159. /// 长尺最长
  160. /// </summary>
  161. private object longest;
  162. /// <summary>
  163. /// 短尺随炉
  164. /// </summary>
  165. private object shrtStove;
  166. /// <summary>
  167. /// 平均长度大于
  168. /// </summary>
  169. private object avgLenMin;
  170. /// <summary>
  171. /// 最长最短差小于
  172. /// </summary>
  173. private object difrncLenMax;
  174. /// <summary>
  175. /// 成品公差
  176. /// </summary>
  177. private object endlenSpecstd;
  178. /// <summary>
  179. /// 单倍尺长
  180. /// </summary>
  181. private object siglLen;
  182. /// <summary>
  183. /// 订货计量单位(支、米、吨)
  184. /// </summary>
  185. private object orderUnit;
  186. /// <summary>
  187. /// 订货量
  188. /// </summary>
  189. private object orderQty;
  190. /// <summary>
  191. /// 订货保总长
  192. /// </summary>
  193. private object ordEnsuTotlLen;
  194. /// <summary>
  195. /// 生产吨数(根据订货量计算)
  196. /// </summary>
  197. private object prdctWgt;
  198. /// <summary>
  199. /// 交货量差方式(绝对值;百分比)
  200. /// </summary>
  201. private object delvryRangeTpe;
  202. /// <summary>
  203. /// 交货量差下限
  204. /// </summary>
  205. private object delvryRangeMin;
  206. /// <summary>
  207. /// 交货量差上限
  208. /// </summary>
  209. private object delvryRangeMax;
  210. /// <summary>
  211. /// 最终用户(来源客户表)
  212. /// </summary>
  213. private object finalUser;
  214. /// <summary>
  215. /// 最终用户描述
  216. /// </summary>
  217. private object finalUserDesc;
  218. /// <summary>
  219. /// 外购坯(COM_BASE_INFO:1218)
  220. /// </summary>
  221. private object outsBilletFl;
  222. /// <summary>
  223. /// 外购管(COM_BASE_INFO:1219)
  224. /// </summary>
  225. private object outsStlPipeFl;
  226. /// <summary>
  227. /// ASSEL(1:允许;0:不允许)
  228. /// </summary>
  229. private Boolean asselFl;
  230. /// <summary>
  231. /// 监制要求(1:有;0:无)
  232. /// </summary>
  233. private Boolean producerFl;
  234. /// <summary>
  235. /// 监制编号(ORD_LN_PK+三位流水号)
  236. /// </summary>
  237. private object prdcrNo;
  238. /// <summary>
  239. /// 监制说明
  240. /// </summary>
  241. private object prdcrDesc;
  242. /// <summary>
  243. /// MPS要求(1:有;0无)
  244. /// </summary>
  245. private Boolean mpsFl;
  246. /// <summary>
  247. /// MPS编号
  248. /// </summary>
  249. private object mpsNo;
  250. /// <summary>
  251. /// MPS说明
  252. /// </summary>
  253. private object mpsDesc;
  254. /// <summary>
  255. /// 交货开始日期
  256. /// </summary>
  257. private object delvryBdate;
  258. /// <summary>
  259. /// 交货结束日期
  260. /// </summary>
  261. private object delvryEdate;
  262. /// <summary>
  263. /// 交货信息描述
  264. /// </summary>
  265. private object delvryDesc;
  266. /// <summary>
  267. /// 运输信息描述
  268. /// </summary>
  269. private object transDesc;
  270. /// <summary>
  271. /// 附加要求编码
  272. /// </summary>
  273. private object addAskNo;
  274. /// <summary>
  275. /// 订货附加要求描述
  276. /// </summary>
  277. private object orderAddDesc;
  278. /// <summary>
  279. /// 产品特殊要求标识
  280. /// </summary>
  281. private object orderSpecialFl;
  282. /// <summary>
  283. /// 特殊要求技术规范说明
  284. /// </summary>
  285. private object orderSpecialHead;
  286. /// <summary>
  287. /// 技术规范文件路径
  288. /// </summary>
  289. private object orderSpecialPath;
  290. /// <summary>
  291. /// 产品特殊要求描述
  292. /// </summary>
  293. private object orderSpecialDesc;
  294. /// <summary>
  295. /// 质保书
  296. /// </summary>
  297. private object zbs;
  298. /// <summary>
  299. /// 订货价
  300. /// </summary>
  301. private object orderPrice;
  302. /// <summary>
  303. /// 运费
  304. /// </summary>
  305. private object transPrice;
  306. /// <summary>
  307. /// 测价序号
  308. /// </summary>
  309. private object testId;
  310. /// <summary>
  311. /// 测算价
  312. /// </summary>
  313. private object testPrice;
  314. /// <summary>
  315. /// 出厂价
  316. /// </summary>
  317. private object outPrice;
  318. /// <summary>
  319. /// 结算价
  320. /// </summary>
  321. private object balncePrice;
  322. /// <summary>
  323. /// 前合同行状态
  324. /// </summary>
  325. private object beOrderLnStatus;
  326. /// <summary>
  327. /// 操作对象(前)
  328. /// </summary>
  329. private object beObjStsOp;
  330. /// <summary>
  331. /// 合同行状态
  332. /// </summary>
  333. private object orderLnStatus;
  334. /// <summary>
  335. /// 操作对象
  336. /// </summary>
  337. private object objStsOp;
  338. /// <summary>
  339. /// 备注
  340. /// </summary>
  341. private object memo;
  342. /// <summary>
  343. /// 有效标志(1:有效,0:无效)
  344. /// </summary>
  345. private object validflag;
  346. /// <summary>
  347. /// 创建人
  348. /// </summary>
  349. private object createName;
  350. /// <summary>
  351. /// 创建时间
  352. /// </summary>
  353. private object createTime;
  354. /// <summary>
  355. /// 修改人
  356. /// </summary>
  357. private object updateName;
  358. /// <summary>
  359. /// 修改时间
  360. /// </summary>
  361. private object updateTime;
  362. /// <summary>
  363. /// 删除人
  364. /// </summary>
  365. private object deleteName;
  366. /// <summary>
  367. /// 删除时间
  368. /// </summary>
  369. private object deleteTime;
  370. /// <summary>
  371. /// ORD_LN_PK_OLD
  372. /// </summary>
  373. private object ordLnPkOld;
  374. /// <summary>
  375. /// 工艺文件号
  376. /// </summary>
  377. private object craftFileNo;
  378. public SlmOrderLineNextEntity()
  379. {
  380. ordPk = "";
  381. ordLnPk = "";
  382. orderNo = "";
  383. orderSeq = "";
  384. custAlphaNo = "";
  385. psc = "";
  386. pscDesc = "";
  387. msc = "";
  388. mscDesc = "";
  389. mscStyle = "";
  390. useCode = "";
  391. useDesc = "";
  392. prdCls = "";
  393. produccode = "";
  394. producname = "";
  395. stdCode = "";
  396. stdName = "";
  397. steelcode = "";
  398. steelname = "";
  399. stdStyle = "";
  400. stdStyleDesc = "";
  401. orderSpecCode = "";
  402. orderSpecDesc = "";
  403. specCode = "";
  404. specName = "";
  405. dimater = "";
  406. height = "";
  407. modelCode = "";
  408. modelDesc = "";
  409. lenNo = "";
  410. lenDesc = "";
  411. lenUnit = "";
  412. lenMin = "";
  413. lenMax = "";
  414. shrtLenRato = "";
  415. shortest = "";
  416. longLenRato = "";
  417. longest = "";
  418. shrtStove = "";
  419. avgLenMin = "";
  420. difrncLenMax = "";
  421. endlenSpecstd = "";
  422. siglLen = "";
  423. orderUnit = "";
  424. orderQty = "";
  425. ordEnsuTotlLen = "";
  426. prdctWgt = "";
  427. delvryRangeTpe = "";
  428. delvryRangeMin = "";
  429. delvryRangeMax = "";
  430. finalUser = "";
  431. finalUserDesc = "";
  432. outsBilletFl = "";
  433. outsStlPipeFl = "";
  434. asselFl = false;
  435. producerFl = false;
  436. prdcrNo = "";
  437. prdcrDesc = "";
  438. mpsFl = false;
  439. mpsNo = "";
  440. mpsDesc = "";
  441. delvryBdate = "";
  442. delvryEdate = "";
  443. delvryDesc = "";
  444. transDesc = "";
  445. addAskNo = "";
  446. orderAddDesc = "";
  447. orderSpecialFl = "";
  448. orderSpecialHead = "";
  449. orderSpecialPath = "";
  450. orderSpecialDesc = "";
  451. zbs = "";
  452. orderPrice = "";
  453. transPrice = "";
  454. testId = "";
  455. testPrice = "";
  456. outPrice = "";
  457. balncePrice = "";
  458. beOrderLnStatus = "";
  459. beObjStsOp = "";
  460. orderLnStatus = "";
  461. objStsOp = "";
  462. memo = "";
  463. validflag = "";
  464. createName = "";
  465. createTime = "";
  466. updateName = "";
  467. updateTime = "";
  468. deleteName = "";
  469. deleteTime = "";
  470. ordLnPkOld = "";
  471. craftFileNo = "";
  472. }
  473. /// <summary>
  474. /// ORD_PK
  475. /// </summary>
  476. [Description("ORD_PK")]
  477. public object OrdPk
  478. {
  479. get { return ordPk; }
  480. set
  481. {
  482. if (value == null)
  483. {
  484. ordPk = DBNull.Value;
  485. }
  486. else
  487. {
  488. ordPk = value;
  489. }
  490. }
  491. }
  492. /// <summary>
  493. /// ORD_LN_PK(ORD_PK+三位流失号)
  494. /// </summary>
  495. [Description("ORD_LN_PK(ORD_PK+三位流失号)")]
  496. public object OrdLnPk
  497. {
  498. get { return ordLnPk; }
  499. set
  500. {
  501. if (value == null)
  502. {
  503. ordLnPk = DBNull.Value;
  504. }
  505. else
  506. {
  507. ordLnPk = value;
  508. }
  509. }
  510. }
  511. /// <summary>
  512. /// 合同号(记录创建时如无合同号,形成LS+YYMMDD+三位流水号的临时合同号
  513. /// </summary>
  514. [Description("合同号")]
  515. public object OrderNo
  516. {
  517. get { return orderNo; }
  518. set
  519. {
  520. if (value == null)
  521. {
  522. orderNo = DBNull.Value;
  523. }
  524. else
  525. {
  526. orderNo = value;
  527. }
  528. }
  529. }
  530. /// <summary>
  531. /// 合同行号(ORD_PK向下三位流水号,确保流水号的连续性)
  532. /// </summary>
  533. [Description("合同行号")]
  534. public object OrderSeq
  535. {
  536. get { return orderSeq; }
  537. set
  538. {
  539. if (value == null)
  540. {
  541. orderSeq = DBNull.Value;
  542. }
  543. else
  544. {
  545. orderSeq = value;
  546. }
  547. }
  548. }
  549. /// <summary>
  550. /// 客户Alpha编号
  551. /// </summary>
  552. [Description("客户Alpha编号")]
  553. public object CustAlphaNo
  554. {
  555. get { return custAlphaNo; }
  556. set
  557. {
  558. if (value == null)
  559. {
  560. custAlphaNo = DBNull.Value;
  561. }
  562. else
  563. {
  564. custAlphaNo = value;
  565. }
  566. }
  567. }
  568. /// <summary>
  569. /// 产品规范码
  570. /// </summary>
  571. [Description("产品规范码")]
  572. public object Psc
  573. {
  574. get { return psc; }
  575. set
  576. {
  577. if (value == null)
  578. {
  579. psc = DBNull.Value;
  580. }
  581. else
  582. {
  583. psc = value;
  584. }
  585. }
  586. }
  587. /// <summary>
  588. /// 产品规范描述
  589. /// </summary>
  590. [Description("产品规范")]
  591. public object PscDesc
  592. {
  593. get { return pscDesc; }
  594. set
  595. {
  596. if (value == null)
  597. {
  598. pscDesc = DBNull.Value;
  599. }
  600. else
  601. {
  602. pscDesc = value;
  603. }
  604. }
  605. }
  606. /// <summary>
  607. /// 冶金规范码
  608. /// </summary>
  609. [Description("冶金规范码")]
  610. public object Msc
  611. {
  612. get { return msc; }
  613. set
  614. {
  615. if (value == null)
  616. {
  617. msc = DBNull.Value;
  618. }
  619. else
  620. {
  621. msc = value;
  622. }
  623. }
  624. }
  625. /// <summary>
  626. /// 冶金规范描述
  627. /// </summary>
  628. [Description("冶金规范")]
  629. public object MscDesc
  630. {
  631. get { return mscDesc; }
  632. set
  633. {
  634. if (value == null)
  635. {
  636. mscDesc = DBNull.Value;
  637. }
  638. else
  639. {
  640. mscDesc = value;
  641. }
  642. }
  643. }
  644. /// <summary>
  645. /// 冶金规范类型(A:钢管+管坯、B:钢管+接箍、C:短节+附件)
  646. /// </summary>
  647. [Description("冶金规范类型")]
  648. public object MscStyle
  649. {
  650. get { return mscStyle; }
  651. set
  652. {
  653. if (value == null)
  654. {
  655. mscStyle = DBNull.Value;
  656. }
  657. else
  658. {
  659. mscStyle = value;
  660. }
  661. }
  662. }
  663. /// <summary>
  664. /// 用途码
  665. /// </summary>
  666. [Description("用途码")]
  667. public object UseCode
  668. {
  669. get { return useCode; }
  670. set
  671. {
  672. if (value == null)
  673. {
  674. useCode = DBNull.Value;
  675. }
  676. else
  677. {
  678. useCode = value;
  679. }
  680. }
  681. }
  682. /// <summary>
  683. /// 用途码描述
  684. /// </summary>
  685. [Description("用途码描述")]
  686. public object UseDesc
  687. {
  688. get { return useDesc; }
  689. set
  690. {
  691. if (value == null)
  692. {
  693. useDesc = DBNull.Value;
  694. }
  695. else
  696. {
  697. useDesc = value;
  698. }
  699. }
  700. }
  701. /// <summary>
  702. /// 品种分类(油井管;专业管;普管)
  703. /// </summary>
  704. [Description("品种分类")]
  705. public object PrdCls
  706. {
  707. get { return prdCls; }
  708. set
  709. {
  710. if (value == null)
  711. {
  712. prdCls = DBNull.Value;
  713. }
  714. else
  715. {
  716. prdCls = value;
  717. }
  718. }
  719. }
  720. /// <summary>
  721. /// 品名代码
  722. /// </summary>
  723. [Description("品名代码")]
  724. public object Produccode
  725. {
  726. get { return produccode; }
  727. set
  728. {
  729. if (value == null)
  730. {
  731. produccode = DBNull.Value;
  732. }
  733. else
  734. {
  735. produccode = value;
  736. }
  737. }
  738. }
  739. /// <summary>
  740. /// 品名描述
  741. /// </summary>
  742. [Description("品名描述")]
  743. public object Producname
  744. {
  745. get { return producname; }
  746. set
  747. {
  748. if (value == null)
  749. {
  750. producname = DBNull.Value;
  751. }
  752. else
  753. {
  754. producname = value;
  755. }
  756. }
  757. }
  758. /// <summary>
  759. /// 标准代码
  760. /// </summary>
  761. [Description("标准代码")]
  762. public object StdCode
  763. {
  764. get { return stdCode; }
  765. set
  766. {
  767. if (value == null)
  768. {
  769. stdCode = DBNull.Value;
  770. }
  771. else
  772. {
  773. stdCode = value;
  774. }
  775. }
  776. }
  777. /// <summary>
  778. /// 标准名称
  779. /// </summary>
  780. [Description("标准名称")]
  781. public object StdName
  782. {
  783. get { return stdName; }
  784. set
  785. {
  786. if (value == null)
  787. {
  788. stdName = DBNull.Value;
  789. }
  790. else
  791. {
  792. stdName = value;
  793. }
  794. }
  795. }
  796. /// <summary>
  797. /// 钢级(牌号)代码
  798. /// </summary>
  799. [Description("钢级(牌号)代码")]
  800. public object Steelcode
  801. {
  802. get { return steelcode; }
  803. set
  804. {
  805. if (value == null)
  806. {
  807. steelcode = DBNull.Value;
  808. }
  809. else
  810. {
  811. steelcode = value;
  812. }
  813. }
  814. }
  815. /// <summary>
  816. /// 钢级(牌号)名称
  817. /// </summary>
  818. [Description("钢级(牌号)名称")]
  819. public object Steelname
  820. {
  821. get { return steelname; }
  822. set
  823. {
  824. if (value == null)
  825. {
  826. steelname = DBNull.Value;
  827. }
  828. else
  829. {
  830. steelname = value;
  831. }
  832. }
  833. }
  834. /// <summary>
  835. /// 标准类别代码
  836. /// </summary>
  837. [Description("标准类别代码")]
  838. public object StdStyle
  839. {
  840. get { return stdStyle; }
  841. set
  842. {
  843. if (value == null)
  844. {
  845. stdStyle = DBNull.Value;
  846. }
  847. else
  848. {
  849. stdStyle = value;
  850. }
  851. }
  852. }
  853. /// <summary>
  854. /// 标准类别描述
  855. /// </summary>
  856. [Description("标准类别")]
  857. public object StdStyleDesc
  858. {
  859. get { return stdStyleDesc; }
  860. set
  861. {
  862. if (value == null)
  863. {
  864. stdStyleDesc = DBNull.Value;
  865. }
  866. else
  867. {
  868. stdStyleDesc = value;
  869. }
  870. }
  871. }
  872. /// <summary>
  873. /// 订货规格代码(用于合同、质保书、标牌、标识)
  874. /// </summary>
  875. [Description("订货规格代码(用于合同、质保书、标牌、标识)")]
  876. public object OrderSpecCode
  877. {
  878. get { return orderSpecCode; }
  879. set
  880. {
  881. if (value == null)
  882. {
  883. orderSpecCode = DBNull.Value;
  884. }
  885. else
  886. {
  887. orderSpecCode = value;
  888. }
  889. }
  890. }
  891. /// <summary>
  892. /// 订货规格描述(用于合同、质保书、标牌、标识)
  893. /// </summary>
  894. [Description("订货规格")]
  895. public object OrderSpecDesc
  896. {
  897. get { return orderSpecDesc; }
  898. set
  899. {
  900. if (value == null)
  901. {
  902. orderSpecDesc = DBNull.Value;
  903. }
  904. else
  905. {
  906. orderSpecDesc = value;
  907. }
  908. }
  909. }
  910. /// <summary>
  911. /// 产品规格代码
  912. /// </summary>
  913. [Description("产品规格代码")]
  914. public object SpecCode
  915. {
  916. get { return specCode; }
  917. set
  918. {
  919. if (value == null)
  920. {
  921. specCode = DBNull.Value;
  922. }
  923. else
  924. {
  925. specCode = value;
  926. }
  927. }
  928. }
  929. /// <summary>
  930. /// 产品规格描述
  931. /// </summary>
  932. [Description("产品规格")]
  933. public object SpecName
  934. {
  935. get { return specName; }
  936. set
  937. {
  938. if (value == null)
  939. {
  940. specName = DBNull.Value;
  941. }
  942. else
  943. {
  944. specName = value;
  945. }
  946. }
  947. }
  948. /// <summary>
  949. /// 外径(mm)
  950. /// </summary>
  951. [Description("外径(mm)")]
  952. public object Dimater
  953. {
  954. get { return dimater; }
  955. set
  956. {
  957. if (value == null)
  958. {
  959. dimater = DBNull.Value;
  960. }
  961. else
  962. {
  963. dimater = value;
  964. }
  965. }
  966. }
  967. /// <summary>
  968. /// 壁厚(mm)
  969. /// </summary>
  970. [Description("壁厚(mm)")]
  971. public object Height
  972. {
  973. get { return height; }
  974. set
  975. {
  976. if (value == null)
  977. {
  978. height = DBNull.Value;
  979. }
  980. else
  981. {
  982. height = value;
  983. }
  984. }
  985. }
  986. /// <summary>
  987. /// 扣型代码
  988. /// </summary>
  989. [Description("扣型代码")]
  990. public object ModelCode
  991. {
  992. get { return modelCode; }
  993. set
  994. {
  995. if (value == null)
  996. {
  997. modelCode = DBNull.Value;
  998. }
  999. else
  1000. {
  1001. modelCode = value;
  1002. }
  1003. }
  1004. }
  1005. /// <summary>
  1006. /// 扣型描述
  1007. /// </summary>
  1008. [Description("扣型")]
  1009. public object ModelDesc
  1010. {
  1011. get { return modelDesc; }
  1012. set
  1013. {
  1014. if (value == null)
  1015. {
  1016. modelDesc = DBNull.Value;
  1017. }
  1018. else
  1019. {
  1020. modelDesc = value;
  1021. }
  1022. }
  1023. }
  1024. /// <summary>
  1025. /// 长度编码
  1026. /// </summary>
  1027. [Description("长度编码")]
  1028. public object LenNo
  1029. {
  1030. get { return lenNo; }
  1031. set
  1032. {
  1033. if (value == null)
  1034. {
  1035. lenNo = DBNull.Value;
  1036. }
  1037. else
  1038. {
  1039. lenNo = value;
  1040. }
  1041. }
  1042. }
  1043. /// <summary>
  1044. /// 长度描述
  1045. /// </summary>
  1046. [Description("长度")]
  1047. public object LenDesc
  1048. {
  1049. get { return lenDesc; }
  1050. set
  1051. {
  1052. if (value == null)
  1053. {
  1054. lenDesc = DBNull.Value;
  1055. }
  1056. else
  1057. {
  1058. lenDesc = value;
  1059. }
  1060. }
  1061. }
  1062. /// <summary>
  1063. /// 长度单位
  1064. /// </summary>
  1065. [Description("长度单位")]
  1066. public object LenUnit
  1067. {
  1068. get { return lenUnit; }
  1069. set
  1070. {
  1071. if (value == null)
  1072. {
  1073. lenUnit = DBNull.Value;
  1074. }
  1075. else
  1076. {
  1077. lenUnit = value;
  1078. }
  1079. }
  1080. }
  1081. /// <summary>
  1082. /// 下限
  1083. /// </summary>
  1084. [Description("下限")]
  1085. public object LenMin
  1086. {
  1087. get { return lenMin; }
  1088. set
  1089. {
  1090. if (value == null)
  1091. {
  1092. lenMin = DBNull.Value;
  1093. }
  1094. else
  1095. {
  1096. lenMin = value;
  1097. }
  1098. }
  1099. }
  1100. /// <summary>
  1101. /// 上限
  1102. /// </summary>
  1103. [Description("上限")]
  1104. public object LenMax
  1105. {
  1106. get { return lenMax; }
  1107. set
  1108. {
  1109. if (value == null)
  1110. {
  1111. lenMax = DBNull.Value;
  1112. }
  1113. else
  1114. {
  1115. lenMax = value;
  1116. }
  1117. }
  1118. }
  1119. /// <summary>
  1120. /// 短尺率(%)
  1121. /// </summary>
  1122. [Description("短尺率(%)")]
  1123. public object ShrtLenRato
  1124. {
  1125. get { return shrtLenRato; }
  1126. set
  1127. {
  1128. if (value == null)
  1129. {
  1130. shrtLenRato = DBNull.Value;
  1131. }
  1132. else
  1133. {
  1134. shrtLenRato = value;
  1135. }
  1136. }
  1137. }
  1138. /// <summary>
  1139. /// 短尺最短
  1140. /// </summary>
  1141. [Description("短尺最短")]
  1142. public object Shortest
  1143. {
  1144. get { return shortest; }
  1145. set
  1146. {
  1147. if (value == null)
  1148. {
  1149. shortest = DBNull.Value;
  1150. }
  1151. else
  1152. {
  1153. shortest = value;
  1154. }
  1155. }
  1156. }
  1157. /// <summary>
  1158. /// 长尺率(%)
  1159. /// </summary>
  1160. [Description("长尺率(%)")]
  1161. public object LongLenRato
  1162. {
  1163. get { return longLenRato; }
  1164. set
  1165. {
  1166. if (value == null)
  1167. {
  1168. longLenRato = DBNull.Value;
  1169. }
  1170. else
  1171. {
  1172. longLenRato = value;
  1173. }
  1174. }
  1175. }
  1176. /// <summary>
  1177. /// 长尺最长
  1178. /// </summary>
  1179. [Description("长尺最长")]
  1180. public object Longest
  1181. {
  1182. get { return longest; }
  1183. set
  1184. {
  1185. if (value == null)
  1186. {
  1187. longest = DBNull.Value;
  1188. }
  1189. else
  1190. {
  1191. longest = value;
  1192. }
  1193. }
  1194. }
  1195. /// <summary>
  1196. /// 短尺随炉
  1197. /// </summary>
  1198. [Description("短尺随炉")]
  1199. public object ShrtStove
  1200. {
  1201. get { return shrtStove; }
  1202. set
  1203. {
  1204. if (value == null)
  1205. {
  1206. shrtStove = DBNull.Value;
  1207. }
  1208. else
  1209. {
  1210. shrtStove = value;
  1211. }
  1212. }
  1213. }
  1214. /// <summary>
  1215. /// 平均长度大于
  1216. /// </summary>
  1217. [Description("平均长度大于")]
  1218. public object AvgLenMin
  1219. {
  1220. get { return avgLenMin; }
  1221. set
  1222. {
  1223. if (value == null)
  1224. {
  1225. avgLenMin = DBNull.Value;
  1226. }
  1227. else
  1228. {
  1229. avgLenMin = value;
  1230. }
  1231. }
  1232. }
  1233. /// <summary>
  1234. /// 最长最短差小于
  1235. /// </summary>
  1236. [Description("最长最短差小于")]
  1237. public object DifrncLenMax
  1238. {
  1239. get { return difrncLenMax; }
  1240. set
  1241. {
  1242. if (value == null)
  1243. {
  1244. difrncLenMax = DBNull.Value;
  1245. }
  1246. else
  1247. {
  1248. difrncLenMax = value;
  1249. }
  1250. }
  1251. }
  1252. /// <summary>
  1253. /// 成品公差
  1254. /// </summary>
  1255. [Description("成品公差")]
  1256. public object EndlenSpecstd
  1257. {
  1258. get { return endlenSpecstd; }
  1259. set
  1260. {
  1261. if (value == null)
  1262. {
  1263. endlenSpecstd = DBNull.Value;
  1264. }
  1265. else
  1266. {
  1267. endlenSpecstd = value;
  1268. }
  1269. }
  1270. }
  1271. /// <summary>
  1272. /// 单倍尺长
  1273. /// </summary>
  1274. [Description("单倍尺长")]
  1275. public object SiglLen
  1276. {
  1277. get { return siglLen; }
  1278. set
  1279. {
  1280. if (value == null)
  1281. {
  1282. siglLen = DBNull.Value;
  1283. }
  1284. else
  1285. {
  1286. siglLen = value;
  1287. }
  1288. }
  1289. }
  1290. /// <summary>
  1291. /// 订货计量单位(支、米、吨)
  1292. /// </summary>
  1293. [Description("订货计量单位")]
  1294. public object OrderUnit
  1295. {
  1296. get { return orderUnit; }
  1297. set
  1298. {
  1299. if (value == null)
  1300. {
  1301. orderUnit = DBNull.Value;
  1302. }
  1303. else
  1304. {
  1305. orderUnit = value;
  1306. }
  1307. }
  1308. }
  1309. /// <summary>
  1310. /// 订货量
  1311. /// </summary>
  1312. [Description("订货量")]
  1313. public object OrderQty
  1314. {
  1315. get { return orderQty; }
  1316. set
  1317. {
  1318. if (value == null)
  1319. {
  1320. orderQty = DBNull.Value;
  1321. }
  1322. else
  1323. {
  1324. orderQty = value;
  1325. }
  1326. }
  1327. }
  1328. /// <summary>
  1329. /// 订货保总长
  1330. /// </summary>
  1331. [Description("订货保总长")]
  1332. public object OrdEnsuTotlLen
  1333. {
  1334. get { return ordEnsuTotlLen; }
  1335. set
  1336. {
  1337. if (value == null)
  1338. {
  1339. ordEnsuTotlLen = DBNull.Value;
  1340. }
  1341. else
  1342. {
  1343. ordEnsuTotlLen = value;
  1344. }
  1345. }
  1346. }
  1347. /// <summary>
  1348. /// 生产吨数(根据订货量计算)
  1349. /// </summary>
  1350. [Description("生产吨数(支、吨)")]
  1351. public object PrdctWgt
  1352. {
  1353. get { return prdctWgt; }
  1354. set
  1355. {
  1356. if (value == null)
  1357. {
  1358. prdctWgt = DBNull.Value;
  1359. }
  1360. else
  1361. {
  1362. prdctWgt = value;
  1363. }
  1364. }
  1365. }
  1366. /// <summary>
  1367. /// 交货量差方式(绝对值;百分比)
  1368. /// </summary>
  1369. [Description("交货量差方式")]
  1370. public object DelvryRangeTpe
  1371. {
  1372. get { return delvryRangeTpe; }
  1373. set
  1374. {
  1375. if (value == null)
  1376. {
  1377. delvryRangeTpe = DBNull.Value;
  1378. }
  1379. else
  1380. {
  1381. delvryRangeTpe = value;
  1382. }
  1383. }
  1384. }
  1385. /// <summary>
  1386. /// 交货量差下限
  1387. /// </summary>
  1388. [Description("交货量差下限")]
  1389. public object DelvryRangeMin
  1390. {
  1391. get { return delvryRangeMin; }
  1392. set
  1393. {
  1394. if (value == null)
  1395. {
  1396. delvryRangeMin = DBNull.Value;
  1397. }
  1398. else
  1399. {
  1400. delvryRangeMin = value;
  1401. }
  1402. }
  1403. }
  1404. /// <summary>
  1405. /// 交货量差上限
  1406. /// </summary>
  1407. [Description("交货量差上限")]
  1408. public object DelvryRangeMax
  1409. {
  1410. get { return delvryRangeMax; }
  1411. set
  1412. {
  1413. if (value == null)
  1414. {
  1415. delvryRangeMax = DBNull.Value;
  1416. }
  1417. else
  1418. {
  1419. delvryRangeMax = value;
  1420. }
  1421. }
  1422. }
  1423. /// <summary>
  1424. /// 最终用户(来源客户表)
  1425. /// </summary>
  1426. [Description("最终用户")]
  1427. public object FinalUser
  1428. {
  1429. get { return finalUser; }
  1430. set
  1431. {
  1432. if (value == null)
  1433. {
  1434. finalUser = DBNull.Value;
  1435. }
  1436. else
  1437. {
  1438. finalUser = value;
  1439. }
  1440. }
  1441. }
  1442. /// <summary>
  1443. /// 最终用户描述
  1444. /// </summary>
  1445. [Description("最终用户")]
  1446. public object FinalUserDesc
  1447. {
  1448. get { return finalUserDesc; }
  1449. set
  1450. {
  1451. if (value == null)
  1452. {
  1453. finalUserDesc = DBNull.Value;
  1454. }
  1455. else
  1456. {
  1457. finalUserDesc = value;
  1458. }
  1459. }
  1460. }
  1461. /// <summary>
  1462. /// 外购坯(COM_BASE_INFO:1218)
  1463. /// </summary>
  1464. [Description("外购坯")]
  1465. public object OutsBilletFl
  1466. {
  1467. get { return outsBilletFl; }
  1468. set
  1469. {
  1470. if (value == null)
  1471. {
  1472. outsBilletFl = DBNull.Value;
  1473. }
  1474. else
  1475. {
  1476. outsBilletFl = value;
  1477. }
  1478. }
  1479. }
  1480. /// <summary>
  1481. /// 外购管(COM_BASE_INFO:1219)
  1482. /// </summary>
  1483. [Description("外购管")]
  1484. public object OutsStlPipeFl
  1485. {
  1486. get { return outsStlPipeFl; }
  1487. set
  1488. {
  1489. if (value == null)
  1490. {
  1491. outsStlPipeFl = DBNull.Value;
  1492. }
  1493. else
  1494. {
  1495. outsStlPipeFl = value;
  1496. }
  1497. }
  1498. }
  1499. /// <summary>
  1500. /// ASSEL(1:允许;0:不允许)
  1501. /// </summary>
  1502. [Description("ASSEL")]
  1503. public Boolean AsselFl
  1504. {
  1505. get { return asselFl; }
  1506. set
  1507. {
  1508. asselFl = value;
  1509. }
  1510. }
  1511. /// <summary>
  1512. /// 监制要求(1:有;0:无)
  1513. /// </summary>
  1514. [Description("监制要求")]
  1515. public Boolean ProducerFl
  1516. {
  1517. get { return producerFl; }
  1518. set
  1519. {
  1520. producerFl = value;
  1521. }
  1522. }
  1523. /// <summary>
  1524. /// 监制编号(ORD_LN_PK+三位流水号)
  1525. /// </summary>
  1526. [Description("监制编号")]
  1527. public object PrdcrNo
  1528. {
  1529. get { return prdcrNo; }
  1530. set
  1531. {
  1532. if (value == null)
  1533. {
  1534. prdcrNo = DBNull.Value;
  1535. }
  1536. else
  1537. {
  1538. prdcrNo = value;
  1539. }
  1540. }
  1541. }
  1542. /// <summary>
  1543. /// 监制说明
  1544. /// </summary>
  1545. [Description("监制说明")]
  1546. public object PrdcrDesc
  1547. {
  1548. get { return prdcrDesc; }
  1549. set
  1550. {
  1551. if (value == null)
  1552. {
  1553. prdcrDesc = DBNull.Value;
  1554. }
  1555. else
  1556. {
  1557. prdcrDesc = value;
  1558. }
  1559. }
  1560. }
  1561. /// <summary>
  1562. /// MPS要求(1:有;0无)
  1563. /// </summary>
  1564. [Description("MPS要求")]
  1565. public Boolean MpsFl
  1566. {
  1567. get { return mpsFl; }
  1568. set
  1569. {
  1570. mpsFl = value;
  1571. }
  1572. }
  1573. /// <summary>
  1574. /// MPS编号
  1575. /// </summary>
  1576. [Description("MPS编号")]
  1577. public object MpsNo
  1578. {
  1579. get { return mpsNo; }
  1580. set
  1581. {
  1582. if (value == null)
  1583. {
  1584. mpsNo = DBNull.Value;
  1585. }
  1586. else
  1587. {
  1588. mpsNo = value;
  1589. }
  1590. }
  1591. }
  1592. /// <summary>
  1593. /// MPS说明
  1594. /// </summary>
  1595. [Description("MPS说明")]
  1596. public object MpsDesc
  1597. {
  1598. get { return mpsDesc; }
  1599. set
  1600. {
  1601. if (value == null)
  1602. {
  1603. mpsDesc = DBNull.Value;
  1604. }
  1605. else
  1606. {
  1607. mpsDesc = value;
  1608. }
  1609. }
  1610. }
  1611. /// <summary>
  1612. /// 交货开始日期
  1613. /// </summary>
  1614. [Description("交货开始日期")]
  1615. public object DelvryBdate
  1616. {
  1617. get { return delvryBdate; }
  1618. set
  1619. {
  1620. if (value == null)
  1621. {
  1622. delvryBdate = DBNull.Value;
  1623. }
  1624. else
  1625. {
  1626. delvryBdate = value;
  1627. }
  1628. }
  1629. }
  1630. /// <summary>
  1631. /// 交货结束日期
  1632. /// </summary>
  1633. [Description("交货结束日期")]
  1634. public object DelvryEdate
  1635. {
  1636. get { return delvryEdate; }
  1637. set
  1638. {
  1639. if (value == null)
  1640. {
  1641. delvryEdate = DBNull.Value;
  1642. }
  1643. else
  1644. {
  1645. delvryEdate = value;
  1646. }
  1647. }
  1648. }
  1649. /// <summary>
  1650. /// 交货信息描述
  1651. /// </summary>
  1652. [Description("交货信息")]
  1653. public object DelvryDesc
  1654. {
  1655. get { return delvryDesc; }
  1656. set
  1657. {
  1658. if (value == null)
  1659. {
  1660. delvryDesc = DBNull.Value;
  1661. }
  1662. else
  1663. {
  1664. delvryDesc = value;
  1665. }
  1666. }
  1667. }
  1668. /// <summary>
  1669. /// 运输信息描述
  1670. /// </summary>
  1671. [Description("运输信息描述")]
  1672. public object TransDesc
  1673. {
  1674. get { return transDesc; }
  1675. set
  1676. {
  1677. if (value == null)
  1678. {
  1679. transDesc = DBNull.Value;
  1680. }
  1681. else
  1682. {
  1683. transDesc = value;
  1684. }
  1685. }
  1686. }
  1687. /// <summary>
  1688. /// 附加要求编码
  1689. /// </summary>
  1690. [Description("附加要求编码")]
  1691. public object AddAskNo
  1692. {
  1693. get { return addAskNo; }
  1694. set
  1695. {
  1696. if (value == null)
  1697. {
  1698. addAskNo = DBNull.Value;
  1699. }
  1700. else
  1701. {
  1702. addAskNo = value;
  1703. }
  1704. }
  1705. }
  1706. /// <summary>
  1707. /// 订货附加要求描述
  1708. /// </summary>
  1709. [Description("订货附加要求")]
  1710. public object OrderAddDesc
  1711. {
  1712. get { return orderAddDesc; }
  1713. set
  1714. {
  1715. if (value == null)
  1716. {
  1717. orderAddDesc = DBNull.Value;
  1718. }
  1719. else
  1720. {
  1721. orderAddDesc = value;
  1722. }
  1723. }
  1724. }
  1725. /// <summary>
  1726. /// 产品特殊要求标识
  1727. /// </summary>
  1728. [Description("产品特殊要求标识")]
  1729. public object OrderSpecialFl
  1730. {
  1731. get { return orderSpecialFl; }
  1732. set
  1733. {
  1734. if (value == null)
  1735. {
  1736. orderSpecialFl = DBNull.Value;
  1737. }
  1738. else
  1739. {
  1740. orderSpecialFl = value;
  1741. }
  1742. }
  1743. }
  1744. /// <summary>
  1745. /// 特殊要求技术规范说明
  1746. /// </summary>
  1747. [Description("特殊要求技术规范说明")]
  1748. public object OrderSpecialHead
  1749. {
  1750. get { return orderSpecialHead; }
  1751. set
  1752. {
  1753. if (value == null)
  1754. {
  1755. orderSpecialHead = DBNull.Value;
  1756. }
  1757. else
  1758. {
  1759. orderSpecialHead = value;
  1760. }
  1761. }
  1762. }
  1763. /// <summary>
  1764. /// 技术规范文件路径
  1765. /// </summary>
  1766. [Description("技术规范文件路径")]
  1767. public object OrderSpecialPath
  1768. {
  1769. get { return orderSpecialPath; }
  1770. set
  1771. {
  1772. if (value == null)
  1773. {
  1774. orderSpecialPath = DBNull.Value;
  1775. }
  1776. else
  1777. {
  1778. orderSpecialPath = value;
  1779. }
  1780. }
  1781. }
  1782. /// <summary>
  1783. /// 产品特殊要求描述
  1784. /// </summary>
  1785. [Description("产品特殊要求")]
  1786. public object OrderSpecialDesc
  1787. {
  1788. get { return orderSpecialDesc; }
  1789. set
  1790. {
  1791. if (value == null)
  1792. {
  1793. orderSpecialDesc = DBNull.Value;
  1794. }
  1795. else
  1796. {
  1797. orderSpecialDesc = value;
  1798. }
  1799. }
  1800. }
  1801. /// <summary>
  1802. /// 质保书
  1803. /// </summary>
  1804. [Description("质保书")]
  1805. public object Zbs
  1806. {
  1807. get { return zbs; }
  1808. set
  1809. {
  1810. if (value == null)
  1811. {
  1812. zbs = DBNull.Value;
  1813. }
  1814. else
  1815. {
  1816. zbs = value;
  1817. }
  1818. }
  1819. }
  1820. /// <summary>
  1821. /// 订货价
  1822. /// </summary>
  1823. [Description("订货价")]
  1824. public object OrderPrice
  1825. {
  1826. get { return orderPrice; }
  1827. set
  1828. {
  1829. if (value == null)
  1830. {
  1831. orderPrice = DBNull.Value;
  1832. }
  1833. else
  1834. {
  1835. orderPrice = value;
  1836. }
  1837. }
  1838. }
  1839. /// <summary>
  1840. /// 运费
  1841. /// </summary>
  1842. [Description("运费")]
  1843. public object TransPrice
  1844. {
  1845. get { return transPrice; }
  1846. set
  1847. {
  1848. if (value == null)
  1849. {
  1850. transPrice = DBNull.Value;
  1851. }
  1852. else
  1853. {
  1854. transPrice = value;
  1855. }
  1856. }
  1857. }
  1858. /// <summary>
  1859. /// 测价序号
  1860. /// </summary>
  1861. [Description("测价序号")]
  1862. public object TestId
  1863. {
  1864. get { return testId; }
  1865. set
  1866. {
  1867. if (value == null)
  1868. {
  1869. testId = DBNull.Value;
  1870. }
  1871. else
  1872. {
  1873. testId = value;
  1874. }
  1875. }
  1876. }
  1877. /// <summary>
  1878. /// 测算价
  1879. /// </summary>
  1880. [Description("测算价")]
  1881. public object TestPrice
  1882. {
  1883. get { return testPrice; }
  1884. set
  1885. {
  1886. if (value == null)
  1887. {
  1888. testPrice = DBNull.Value;
  1889. }
  1890. else
  1891. {
  1892. testPrice = value;
  1893. }
  1894. }
  1895. }
  1896. /// <summary>
  1897. /// 出厂价
  1898. /// </summary>
  1899. [Description("出厂价")]
  1900. public object OutPrice
  1901. {
  1902. get { return outPrice; }
  1903. set
  1904. {
  1905. if (value == null)
  1906. {
  1907. outPrice = DBNull.Value;
  1908. }
  1909. else
  1910. {
  1911. outPrice = value;
  1912. }
  1913. }
  1914. }
  1915. /// <summary>
  1916. /// 结算价
  1917. /// </summary>
  1918. [Description("结算价")]
  1919. public object BalncePrice
  1920. {
  1921. get { return balncePrice; }
  1922. set
  1923. {
  1924. if (value == null)
  1925. {
  1926. balncePrice = DBNull.Value;
  1927. }
  1928. else
  1929. {
  1930. balncePrice = value;
  1931. }
  1932. }
  1933. }
  1934. /// <summary>
  1935. /// 前合同行状态
  1936. /// </summary>
  1937. [Description("前合同行状态")]
  1938. public object BeOrderLnStatus
  1939. {
  1940. get { return beOrderLnStatus; }
  1941. set
  1942. {
  1943. if (value == null)
  1944. {
  1945. beOrderLnStatus = DBNull.Value;
  1946. }
  1947. else
  1948. {
  1949. beOrderLnStatus = value;
  1950. }
  1951. }
  1952. }
  1953. /// <summary>
  1954. /// 操作对象(前)
  1955. /// </summary>
  1956. [Description("操作对象(前)")]
  1957. public object BeObjStsOp
  1958. {
  1959. get { return beObjStsOp; }
  1960. set
  1961. {
  1962. if (value == null)
  1963. {
  1964. beObjStsOp = DBNull.Value;
  1965. }
  1966. else
  1967. {
  1968. beObjStsOp = value;
  1969. }
  1970. }
  1971. }
  1972. /// <summary>
  1973. /// 合同行状态
  1974. /// </summary>
  1975. [Description("合同行状态")]
  1976. public object OrderLnStatus
  1977. {
  1978. get { return orderLnStatus; }
  1979. set
  1980. {
  1981. if (value == null)
  1982. {
  1983. orderLnStatus = DBNull.Value;
  1984. }
  1985. else
  1986. {
  1987. orderLnStatus = value;
  1988. }
  1989. }
  1990. }
  1991. /// <summary>
  1992. /// 操作对象
  1993. /// </summary>
  1994. [Description("操作对象")]
  1995. public object ObjStsOp
  1996. {
  1997. get { return objStsOp; }
  1998. set
  1999. {
  2000. if (value == null)
  2001. {
  2002. objStsOp = DBNull.Value;
  2003. }
  2004. else
  2005. {
  2006. objStsOp = value;
  2007. }
  2008. }
  2009. }
  2010. /// <summary>
  2011. /// 备注
  2012. /// </summary>
  2013. [Description("备注")]
  2014. public object Memo
  2015. {
  2016. get { return memo; }
  2017. set
  2018. {
  2019. if (value == null)
  2020. {
  2021. memo = DBNull.Value;
  2022. }
  2023. else
  2024. {
  2025. memo = value;
  2026. }
  2027. }
  2028. }
  2029. /// <summary>
  2030. /// 有效标志(1:有效,0:无效)
  2031. /// </summary>
  2032. [Description("有效标志")]
  2033. public object Validflag
  2034. {
  2035. get { return validflag; }
  2036. set
  2037. {
  2038. if (value == null)
  2039. {
  2040. validflag = DBNull.Value;
  2041. }
  2042. else
  2043. {
  2044. validflag = value;
  2045. }
  2046. }
  2047. }
  2048. /// <summary>
  2049. /// 创建人
  2050. /// </summary>
  2051. [Description("创建人")]
  2052. public object CreateName
  2053. {
  2054. get { return createName; }
  2055. set
  2056. {
  2057. if (value == null)
  2058. {
  2059. createName = DBNull.Value;
  2060. }
  2061. else
  2062. {
  2063. createName = value;
  2064. }
  2065. }
  2066. }
  2067. /// <summary>
  2068. /// 创建时间
  2069. /// </summary>
  2070. [Description("创建时间")]
  2071. public object CreateTime
  2072. {
  2073. get { return createTime; }
  2074. set
  2075. {
  2076. if (value == null)
  2077. {
  2078. createTime = DBNull.Value;
  2079. }
  2080. else
  2081. {
  2082. createTime = value;
  2083. }
  2084. }
  2085. }
  2086. /// <summary>
  2087. /// 修改人
  2088. /// </summary>
  2089. [Description("修改人")]
  2090. public object UpdateName
  2091. {
  2092. get { return updateName; }
  2093. set
  2094. {
  2095. if (value == null)
  2096. {
  2097. updateName = DBNull.Value;
  2098. }
  2099. else
  2100. {
  2101. updateName = value;
  2102. }
  2103. }
  2104. }
  2105. /// <summary>
  2106. /// 修改时间
  2107. /// </summary>
  2108. [Description("修改时间")]
  2109. public object UpdateTime
  2110. {
  2111. get { return updateTime; }
  2112. set
  2113. {
  2114. if (value == null)
  2115. {
  2116. updateTime = DBNull.Value;
  2117. }
  2118. else
  2119. {
  2120. updateTime = value;
  2121. }
  2122. }
  2123. }
  2124. /// <summary>
  2125. /// 删除人
  2126. /// </summary>
  2127. [Description("删除人")]
  2128. public object DeleteName
  2129. {
  2130. get { return deleteName; }
  2131. set
  2132. {
  2133. if (value == null)
  2134. {
  2135. deleteName = DBNull.Value;
  2136. }
  2137. else
  2138. {
  2139. deleteName = value;
  2140. }
  2141. }
  2142. }
  2143. /// <summary>
  2144. /// 删除时间
  2145. /// </summary>
  2146. [Description("删除时间")]
  2147. public object DeleteTime
  2148. {
  2149. get { return deleteTime; }
  2150. set
  2151. {
  2152. if (value == null)
  2153. {
  2154. deleteTime = DBNull.Value;
  2155. }
  2156. else
  2157. {
  2158. deleteTime = value;
  2159. }
  2160. }
  2161. }
  2162. /// <summary>
  2163. /// ORD_LN_PK_OLD
  2164. /// </summary>
  2165. [Description("ORD_LN_PK_OLD")]
  2166. public object OrdLnPkOld
  2167. {
  2168. get { return ordLnPkOld; }
  2169. set
  2170. {
  2171. if (value == null)
  2172. {
  2173. ordLnPkOld = DBNull.Value;
  2174. }
  2175. else
  2176. {
  2177. ordLnPkOld = value;
  2178. }
  2179. }
  2180. }
  2181. /// <summary>
  2182. /// 工艺文件号
  2183. /// </summary>
  2184. [Description("工艺文件号")]
  2185. public object CraftFileNo
  2186. {
  2187. get { return craftFileNo; }
  2188. set
  2189. {
  2190. if (value == null)
  2191. {
  2192. craftFileNo = DBNull.Value;
  2193. }
  2194. else
  2195. {
  2196. craftFileNo = value;
  2197. }
  2198. }
  2199. }
  2200. }
  2201. }