YdmZcBillMyEntity.cs 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. using System.ComponentModel;
  2. namespace Core.StlMes.Client.Judge.ViewModels
  3. {
  4. public class YdmZcBillMyEntity
  5. {
  6. private string realinvoiceno;
  7. [Description("发票号")]
  8. public string Realinvoiceno
  9. {
  10. get { return realinvoiceno; }
  11. set { realinvoiceno = value; }
  12. }
  13. private string delvryAddr;
  14. [Description("交货地点")]
  15. public string DelvryAddr
  16. {
  17. get { return delvryAddr; }
  18. set { delvryAddr = value; }
  19. }
  20. private string orderSeqNo;
  21. [Description("合同号")]
  22. public string OrderSeqNo
  23. {
  24. get { return orderSeqNo; }
  25. set { orderSeqNo = value; }
  26. }
  27. private string orderNo;
  28. [Description("合同头号")]
  29. public string OrderNo
  30. {
  31. get { return orderNo; }
  32. set { orderNo = value; }
  33. }
  34. private string orderSeq;
  35. [Description("合同行号")]
  36. public string OrderSeq
  37. {
  38. get { return orderSeq; }
  39. set { orderSeq = value; }
  40. }
  41. private string zbsOrderNo;
  42. [Description("质保书合同号")]
  43. public string ZbsOrderNo
  44. {
  45. get { return zbsOrderNo; }
  46. set { zbsOrderNo = value; }
  47. }
  48. private string deliveryNo;
  49. [Description("交货行号")]
  50. public string DeliveryNo
  51. {
  52. get { return deliveryNo; }
  53. set { deliveryNo = value; }
  54. }
  55. private string ordPk;
  56. [Description("合同主键")]
  57. public string OrdPk
  58. {
  59. get { return ordPk; }
  60. set { ordPk = value; }
  61. }
  62. private string ordLnPk;
  63. [Description("合同行主键")]
  64. public string OrdLnPk
  65. {
  66. get { return ordLnPk; }
  67. set { ordLnPk = value; }
  68. }
  69. private string ordLnDlyPk;
  70. [Description("交货行主键")]
  71. public string OrdLnDlyPk
  72. {
  73. get { return ordLnDlyPk; }
  74. set { ordLnDlyPk = value; }
  75. }
  76. private string produccode;
  77. [Description("品名代码")]
  78. public string Produccode
  79. {
  80. get { return produccode; }
  81. set { produccode = value; }
  82. }
  83. private string producname;
  84. [Description("品名")]
  85. public string Producname
  86. {
  87. get { return producname; }
  88. set { producname = value; }
  89. }
  90. private string steelcode;
  91. [Description("钢级代码")]
  92. public string Steelcode
  93. {
  94. get { return steelcode; }
  95. set { steelcode = value; }
  96. }
  97. private string steelname;
  98. [Description("钢级牌号")]
  99. public string Steelname
  100. {
  101. get { return steelname; }
  102. set { steelname = value; }
  103. }
  104. private string stdCode;
  105. [Description("标准代码")]
  106. public string StdCode
  107. {
  108. get { return stdCode; }
  109. set { stdCode = value; }
  110. }
  111. private string stdName;
  112. [Description("标准名称")]
  113. public string StdName
  114. {
  115. get { return stdName; }
  116. set { stdName = value; }
  117. }
  118. private string stdStyle;
  119. [Description("标准类别代码")]
  120. public string StdStyle
  121. {
  122. get { return stdStyle; }
  123. set { stdStyle = value; }
  124. }
  125. private string stdStyleDesc;
  126. [Description("标准类别")]
  127. public string StdStyleDesc
  128. {
  129. get { return stdStyleDesc; }
  130. set { stdStyleDesc = value; }
  131. }
  132. private string modelCode;
  133. [Description("扣型代码")]
  134. public string ModelCode
  135. {
  136. get { return modelCode; }
  137. set { modelCode = value; }
  138. }
  139. private string modelDesc;
  140. [Description("扣型")]
  141. public string ModelDesc
  142. {
  143. get { return modelDesc; }
  144. set { modelDesc = value; }
  145. }
  146. private string specCode;
  147. [Description("规格代码")]
  148. public string SpecCode
  149. {
  150. get { return specCode; }
  151. set { specCode = value; }
  152. }
  153. private string specName;
  154. [Description("产品规格")]
  155. public string SpecName
  156. {
  157. get { return specName; }
  158. set { specName = value; }
  159. }
  160. private string lenMin;
  161. [Description("下限")]
  162. public string LenMin
  163. {
  164. get { return lenMin; }
  165. set { lenMin = value; }
  166. }
  167. private string lenMax;
  168. [Description("上限")]
  169. public string LenMax
  170. {
  171. get { return lenMax; }
  172. set { lenMax = value; }
  173. }
  174. private string delvryQty;
  175. [Description("订货量")]
  176. public string DelvryQty
  177. {
  178. get { return delvryQty; }
  179. set { delvryQty = value; }
  180. }
  181. private string orderUnit;
  182. [Description("单位")]
  183. public string OrderUnit
  184. {
  185. get { return orderUnit; }
  186. set { orderUnit = value; }
  187. }
  188. private string wgtEstmt;
  189. [Description("估算重量(吨)")]
  190. public string WgtEstmt
  191. {
  192. get { return wgtEstmt; }
  193. set { wgtEstmt = value; }
  194. }
  195. private string actTransType;
  196. [Description("运输方式")]
  197. public string ActTransType
  198. {
  199. get { return actTransType; }
  200. set { actTransType = value; }
  201. }
  202. private string receivNo;
  203. [Description("收货单位编码")]
  204. public string ReceivNo
  205. {
  206. get { return receivNo; }
  207. set { receivNo = value; }
  208. }
  209. private string receivNm;
  210. [Description("收货单位")]
  211. public string ReceivNm
  212. {
  213. get { return receivNm; }
  214. set { receivNm = value; }
  215. }
  216. private string stlmtUnitNo;
  217. [Description("结算单位编码")]
  218. public string StlmtUnitNo
  219. {
  220. get { return stlmtUnitNo; }
  221. set { stlmtUnitNo = value; }
  222. }
  223. private string stlmtUnitNm;
  224. [Description("结算单位")]
  225. public string StlmtUnitNm
  226. {
  227. get { return stlmtUnitNm; }
  228. set { stlmtUnitNm = value; }
  229. }
  230. private string planWt;
  231. [Description("吨")]
  232. public string PlanWt
  233. {
  234. get { return planWt; }
  235. set { planWt = value; }
  236. }
  237. private string planNum;
  238. [Description("支")]
  239. public string PlanNum
  240. {
  241. get { return planNum; }
  242. set { planNum = value; }
  243. }
  244. private string actWt;
  245. [Description("吨")]
  246. public string ActWt
  247. {
  248. get { return actWt; }
  249. set { actWt = value; }
  250. }
  251. private string actNum;
  252. [Description("支")]
  253. public string ActNum
  254. {
  255. get { return actNum; }
  256. set { actNum = value; }
  257. }
  258. private string billNo;
  259. [Description("提单号")]
  260. public string BillNo
  261. {
  262. get { return billNo; }
  263. set { billNo = value; }
  264. }
  265. private string billNoSeq;
  266. [Description("序号")]
  267. public string BillNoSeq
  268. {
  269. get { return billNoSeq; }
  270. set { billNoSeq = value; }
  271. }
  272. private string customerNo;
  273. [Description("订货单位代码")]
  274. public string CustomerNo
  275. {
  276. get { return customerNo; }
  277. set { customerNo = value; }
  278. }
  279. private string customerNm;
  280. [Description("订货单位")]
  281. public string CustomerNm
  282. {
  283. get { return customerNm; }
  284. set { customerNm = value; }
  285. }
  286. private string zbsFlag = "";
  287. [Description("打印状态")]
  288. public string ZbsFlag
  289. {
  290. get { return zbsFlag; }
  291. set { zbsFlag = value; }
  292. }
  293. private string zbsNum = "";
  294. [Description("打印次数")]
  295. public string ZbsNum
  296. {
  297. get { return zbsNum; }
  298. set { zbsNum = value; }
  299. }
  300. private string zbsTime = "";
  301. [Description("打印时间")]
  302. public string ZbsTime
  303. {
  304. get { return zbsTime; }
  305. set { zbsTime = value; }
  306. }
  307. private string outTime = "";
  308. [Description("出库时间")]
  309. public string OutTime
  310. {
  311. get { return outTime; }
  312. set { outTime = value; }
  313. }
  314. private string zbsName = "";
  315. [Description("质保书")]
  316. public string ZbsName
  317. {
  318. get { return zbsName; }
  319. set { zbsName = value; }
  320. }
  321. private string zbsPath = "";
  322. [Description("质保书路径")]
  323. public string ZbsPath
  324. {
  325. get { return zbsPath; }
  326. set { zbsPath = value; }
  327. }
  328. private string finalUserDesc = "";
  329. [Description("最终用户")]
  330. public string FinalUserDesc
  331. {
  332. get { return finalUserDesc; }
  333. set { finalUserDesc = value; }
  334. }
  335. private string qualityUserDesc = "";
  336. [Description("质保书用户")]
  337. public string QualityUserDesc
  338. {
  339. get { return qualityUserDesc; }
  340. set { qualityUserDesc = value; }
  341. }
  342. private string askSubItmeVal = "";
  343. [Description("语言要求")]
  344. public string AskSubItmeVal
  345. {
  346. get { return askSubItmeVal; }
  347. set { askSubItmeVal = value; }
  348. }
  349. private string metricSystem = "";
  350. [Description("公英制方式")]
  351. public string MetricSystem
  352. {
  353. get { return metricSystem; }
  354. set { metricSystem = value; }
  355. }
  356. private string licenseNo = "";
  357. [Description("许可证号")]
  358. public string LicenseNo
  359. {
  360. get { return licenseNo; }
  361. set { licenseNo = value; }
  362. }
  363. private string plineName = "";
  364. [Description("产线名称")]
  365. public string PlineName
  366. {
  367. get { return plineName; }
  368. set { plineName = value; }
  369. }
  370. private string craftNo = "";
  371. [Description("工艺文件号")]
  372. public string CraftNo
  373. {
  374. get { return craftNo; }
  375. set { craftNo = value; }
  376. }
  377. private string craftPath = "";
  378. [Description("工艺文件路径")]
  379. public string CraftPath
  380. {
  381. get { return craftPath; }
  382. set { craftPath = value; }
  383. }
  384. private string checkNo = "";
  385. [Description("检验号")]
  386. public string CheckNo
  387. {
  388. get { return checkNo; }
  389. set { checkNo = value; }
  390. }
  391. private string billNo1 = "";
  392. [Description("提单号")]
  393. public string BillNo1
  394. {
  395. get { return billNo1; }
  396. set { billNo1 = value; }
  397. }
  398. private string plineCode = "";
  399. [Description("产线代码")]
  400. public string PlineCode
  401. {
  402. get { return plineCode; }
  403. set { plineCode = value; }
  404. }
  405. private string lockBillFlag = "";
  406. [Description("提单是否锁定")]
  407. public string LockBillFlag
  408. {
  409. get { return lockBillFlag; }
  410. set { lockBillFlag = value; }
  411. }
  412. private string languageCode = "";
  413. [Description("语言代码")]
  414. public string LanguageCode
  415. {
  416. get { return languageCode; }
  417. set { languageCode = value; }
  418. }
  419. private string languageName = "";
  420. [Description("语言名称")]
  421. public string LanguageName
  422. {
  423. get { return languageName; }
  424. set { languageName = value; }
  425. }
  426. private string zbsTypeCode = "";
  427. [Description("质保书类型代码")]
  428. public string ZbsTypeCode
  429. {
  430. get { return zbsTypeCode; }
  431. set { zbsTypeCode = value; }
  432. }
  433. private string zbsTypeDesc = "";
  434. [Description("质保书类型描述")]
  435. public string ZbsTypeDesc
  436. {
  437. get { return zbsTypeDesc; }
  438. set { zbsTypeDesc = value; }
  439. }
  440. private string zbsCreateName = "";
  441. [Description("质保书创建人")]
  442. public string ZbsCreateName
  443. {
  444. get { return zbsCreateName; }
  445. set { zbsCreateName = value; }
  446. }
  447. private string zbsCreateTime = "";
  448. [Description("质保书创建时间")]
  449. public string ZbsCreateTime
  450. {
  451. get { return zbsCreateTime; }
  452. set { zbsCreateTime = value; }
  453. }
  454. private string zbsEdition = "";
  455. [Description("质保书版本号")]
  456. public string ZbsEdition
  457. {
  458. get { return zbsEdition; }
  459. set { zbsEdition = value; }
  460. }
  461. }
  462. }