SlmOrderLineNextEntity.cs 59 KB

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