Orders.cs 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace CoreEntity.Entity
  5. {
  6. [Serializable]
  7. public class Orders
  8. {
  9. private string _Id;
  10. private string _orderscode;
  11. private DateTime? _creationdate;
  12. private string _lastmodified;
  13. private Guid _accountid;
  14. private string _accountname;
  15. private string _consignee;
  16. private string _deliveryzipcode;
  17. private string _invoice;
  18. private string _invoiceno;
  19. private string _ordernotes;
  20. private int? _sum;
  21. private int? _initsum;
  22. private int? _productcost;
  23. private int? _reducing;
  24. private int? _discountprice;
  25. private int? _paymenttype;
  26. private int? _deliverytype;
  27. private DateTime? _ordertime;
  28. private DateTime? _shippingtime;
  29. private string _receivingtime;
  30. private string _shippingno;
  31. private int? _orderstatus;
  32. private bool? _isreturn;
  33. private int? _transportcosts;
  34. private string _regioncode;
  35. private bool? _isrxdrug;
  36. private int? _origintype;
  37. private Guid _operateid;
  38. private Guid _deptid;
  39. private string _deptcode;
  40. private Guid _buyuserid;
  41. private string _productline;
  42. private string _subproductline;
  43. private string _diseaseclasscode;
  44. private string _age;
  45. private string _sex;
  46. private string _syncstatus;
  47. private bool? _isvisible;
  48. private int? _errorcount;
  49. private bool? _isneedreceipt;
  50. private int? _ordersintegral;
  51. private int? _couponcode;
  52. private int? _couponvalue;
  53. private bool? _ispayment;
  54. private Guid _auditorid;
  55. private DateTime? _allocationtime;
  56. private int? _sourceplatforms;
  57. private int? _devicetype;
  58. private bool? _isreward;
  59. private bool? _isemailmark;
  60. private Guid _customerdataid;
  61. private bool? _isdrug;
  62. private int? _huawuorigintype;
  63. private int? _invoicesum;
  64. private int? _advancesum;
  65. private int? _againordercount;
  66. private int? _confimlevel;
  67. private string _businessid;
  68. private bool? _ispaybycard;
  69. private decimal? _preferentialrate;
  70. private string _verificationcode;
  71. private string _aconsigneephone1;
  72. private string _aconsigneephone2;
  73. private string _aconsigneephone3;
  74. private string _adeliveryaddress;
  75. private bool? _isautomaticsigned;
  76. private int? _warehousecode;
  77. private int? _cashcouponvalue;
  78. private string _cashcouponcode;
  79. private bool? _isdealwith;
  80. private bool? _isneworder;
  81. private int? _consigneetype;
  82. private string _customercode;
  83. private string _customername;
  84. private string _invoicecontent;
  85. private int? _invoicecontenttype;
  86. private int? _orderstype;
  87. private string _weight;
  88. private string _height;
  89. private int? _healthprice;
  90. private string _levernumber;
  91. private bool? _iso2o;
  92. private int? _advancepaytype;
  93. private DateTime? _inventoryauditdate;
  94. private string _orderprocessdate;
  95. private bool? _allocationflag;
  96. private DateTime? _bonusdate;
  97. private int? _integralvalue;
  98. private string _istoerp;
  99. private string _merchantnote;
  100. private string _othernote;
  101. private bool? _isprescription;
  102. private Guid _confirmid;
  103. public Orders()
  104. {
  105. }
  106. public string OrdersCode
  107. {
  108. get { return _orderscode; }
  109. set { _orderscode = value; }
  110. }
  111. public DateTime? CreationDate
  112. {
  113. get { return _creationdate; }
  114. set { _creationdate = value; }
  115. }
  116. public string LastModified
  117. {
  118. get { return _lastmodified; }
  119. set { _lastmodified = value; }
  120. }
  121. public Guid AccountId
  122. {
  123. get { return _accountid; }
  124. set { _accountid = value; }
  125. }
  126. public string AccountName
  127. {
  128. get { return _accountname; }
  129. set { _accountname = value; }
  130. }
  131. public string Consignee
  132. {
  133. get { return _consignee; }
  134. set { _consignee = value; }
  135. }
  136. public string DeliveryZipCode
  137. {
  138. get { return _deliveryzipcode; }
  139. set { _deliveryzipcode = value; }
  140. }
  141. public string Invoice
  142. {
  143. get { return _invoice; }
  144. set { _invoice = value; }
  145. }
  146. public string InvoiceNo
  147. {
  148. get { return _invoiceno; }
  149. set { _invoiceno = value; }
  150. }
  151. public string OrderNotes
  152. {
  153. get { return _ordernotes; }
  154. set { _ordernotes = value; }
  155. }
  156. public int? Sum
  157. {
  158. get { return _sum; }
  159. set { _sum = value; }
  160. }
  161. public int? InitSum
  162. {
  163. get { return _initsum; }
  164. set { _initsum = value; }
  165. }
  166. public int? ProductCost
  167. {
  168. get { return _productcost; }
  169. set { _productcost = value; }
  170. }
  171. public int? Reducing
  172. {
  173. get { return _reducing; }
  174. set { _reducing = value; }
  175. }
  176. public int? Discountprice
  177. {
  178. get { return _discountprice; }
  179. set { _discountprice = value; }
  180. }
  181. public int? PaymentType
  182. {
  183. get { return _paymenttype; }
  184. set { _paymenttype = value; }
  185. }
  186. public int? DeliveryType
  187. {
  188. get { return _deliverytype; }
  189. set { _deliverytype = value; }
  190. }
  191. public DateTime? OrderTime
  192. {
  193. get { return _ordertime; }
  194. set { _ordertime = value; }
  195. }
  196. public DateTime? ShippingTime
  197. {
  198. get { return _shippingtime; }
  199. set { _shippingtime = value; }
  200. }
  201. public string ReceivingTime
  202. {
  203. get { return _receivingtime; }
  204. set { _receivingtime = value; }
  205. }
  206. public string ShippingNo
  207. {
  208. get { return _shippingno; }
  209. set { _shippingno = value; }
  210. }
  211. public int? OrderStatus
  212. {
  213. get { return _orderstatus; }
  214. set { _orderstatus = value; }
  215. }
  216. public bool? IsReturn
  217. {
  218. get { return _isreturn; }
  219. set { _isreturn = value; }
  220. }
  221. public int? TransportCosts
  222. {
  223. get { return _transportcosts; }
  224. set { _transportcosts = value; }
  225. }
  226. public string RegionCode
  227. {
  228. get { return _regioncode; }
  229. set { _regioncode = value; }
  230. }
  231. public bool? IsRxDrug
  232. {
  233. get { return _isrxdrug; }
  234. set { _isrxdrug = value; }
  235. }
  236. public int? OriginType
  237. {
  238. get { return _origintype; }
  239. set { _origintype = value; }
  240. }
  241. public Guid OperateID
  242. {
  243. get { return _operateid; }
  244. set { _operateid = value; }
  245. }
  246. public Guid DeptId
  247. {
  248. get { return _deptid; }
  249. set { _deptid = value; }
  250. }
  251. public string DeptCode
  252. {
  253. get { return _deptcode; }
  254. set { _deptcode = value; }
  255. }
  256. public Guid BuyUserId
  257. {
  258. get { return _buyuserid; }
  259. set { _buyuserid = value; }
  260. }
  261. public string ProductLine
  262. {
  263. get { return _productline; }
  264. set { _productline = value; }
  265. }
  266. public string SubProductLine
  267. {
  268. get { return _subproductline; }
  269. set { _subproductline = value; }
  270. }
  271. public string DiseaseClassCode
  272. {
  273. get { return _diseaseclasscode; }
  274. set { _diseaseclasscode = value; }
  275. }
  276. public string Age
  277. {
  278. get { return _age; }
  279. set { _age = value; }
  280. }
  281. public string Sex
  282. {
  283. get { return _sex; }
  284. set { _sex = value; }
  285. }
  286. public string SyncStatus
  287. {
  288. get { return _syncstatus; }
  289. set { _syncstatus = value; }
  290. }
  291. public bool? IsVisible
  292. {
  293. get { return _isvisible; }
  294. set { _isvisible = value; }
  295. }
  296. public int? ErrorCount
  297. {
  298. get { return _errorcount; }
  299. set { _errorcount = value; }
  300. }
  301. public bool? IsNeedReceipt
  302. {
  303. get { return _isneedreceipt; }
  304. set { _isneedreceipt = value; }
  305. }
  306. public int? OrdersIntegral
  307. {
  308. get { return _ordersintegral; }
  309. set { _ordersintegral = value; }
  310. }
  311. public int? CouponCode
  312. {
  313. get { return _couponcode; }
  314. set { _couponcode = value; }
  315. }
  316. public int? CouponValue
  317. {
  318. get { return _couponvalue; }
  319. set { _couponvalue = value; }
  320. }
  321. public bool? Ispayment
  322. {
  323. get { return _ispayment; }
  324. set { _ispayment = value; }
  325. }
  326. public Guid AuditorId
  327. {
  328. get { return _auditorid; }
  329. set { _auditorid = value; }
  330. }
  331. public DateTime? AllocationTime
  332. {
  333. get { return _allocationtime; }
  334. set { _allocationtime = value; }
  335. }
  336. public int? SourcePlatforms
  337. {
  338. get { return _sourceplatforms; }
  339. set { _sourceplatforms = value; }
  340. }
  341. public int? DeviceType
  342. {
  343. get { return _devicetype; }
  344. set { _devicetype = value; }
  345. }
  346. public bool? IsReward
  347. {
  348. get { return _isreward; }
  349. set { _isreward = value; }
  350. }
  351. public bool? IsEmailmark
  352. {
  353. get { return _isemailmark; }
  354. set { _isemailmark = value; }
  355. }
  356. public Guid CustomerDataId
  357. {
  358. get { return _customerdataid; }
  359. set { _customerdataid = value; }
  360. }
  361. public bool? IsDrug
  362. {
  363. get { return _isdrug; }
  364. set { _isdrug = value; }
  365. }
  366. public int? HuaWuOriginType
  367. {
  368. get { return _huawuorigintype; }
  369. set { _huawuorigintype = value; }
  370. }
  371. public int? InvoiceSum
  372. {
  373. get { return _invoicesum; }
  374. set { _invoicesum = value; }
  375. }
  376. public int? AdvanceSum
  377. {
  378. get { return _advancesum; }
  379. set { _advancesum = value; }
  380. }
  381. public int? AgainOrderCount
  382. {
  383. get { return _againordercount; }
  384. set { _againordercount = value; }
  385. }
  386. public int? ConfimLevel
  387. {
  388. get { return _confimlevel; }
  389. set { _confimlevel = value; }
  390. }
  391. public string BusinessId
  392. {
  393. get { return _businessid; }
  394. set { _businessid = value; }
  395. }
  396. public bool? IsPayByCard
  397. {
  398. get { return _ispaybycard; }
  399. set { _ispaybycard = value; }
  400. }
  401. public decimal? PreferentialRate
  402. {
  403. get { return _preferentialrate; }
  404. set { _preferentialrate = value; }
  405. }
  406. public string VerificationCode
  407. {
  408. get { return _verificationcode; }
  409. set { _verificationcode = value; }
  410. }
  411. public string AConsigneePhone1
  412. {
  413. get { return _aconsigneephone1; }
  414. set { _aconsigneephone1 = value; }
  415. }
  416. public string AConsigneePhone2
  417. {
  418. get { return _aconsigneephone2; }
  419. set { _aconsigneephone2 = value; }
  420. }
  421. public string AConsigneePhone3
  422. {
  423. get { return _aconsigneephone3; }
  424. set { _aconsigneephone3 = value; }
  425. }
  426. public string ADeliveryAddress
  427. {
  428. get { return _adeliveryaddress; }
  429. set { _adeliveryaddress = value; }
  430. }
  431. public bool? IsAutomaticSigned
  432. {
  433. get { return _isautomaticsigned; }
  434. set { _isautomaticsigned = value; }
  435. }
  436. public int? WarehouseCode
  437. {
  438. get { return _warehousecode; }
  439. set { _warehousecode = value; }
  440. }
  441. public int? CashCouponValue
  442. {
  443. get { return _cashcouponvalue; }
  444. set { _cashcouponvalue = value; }
  445. }
  446. public string CashCouponCode
  447. {
  448. get { return _cashcouponcode; }
  449. set { _cashcouponcode = value; }
  450. }
  451. public bool? IsDealWith
  452. {
  453. get { return _isdealwith; }
  454. set { _isdealwith = value; }
  455. }
  456. public bool? IsNewOrder
  457. {
  458. get { return _isneworder; }
  459. set { _isneworder = value; }
  460. }
  461. public int? ConsigneeType
  462. {
  463. get { return _consigneetype; }
  464. set { _consigneetype = value; }
  465. }
  466. public string CustomerCode
  467. {
  468. get { return _customercode; }
  469. set { _customercode = value; }
  470. }
  471. public string CustomerName
  472. {
  473. get { return _customername; }
  474. set { _customername = value; }
  475. }
  476. public string InvoiceContent
  477. {
  478. get { return _invoicecontent; }
  479. set { _invoicecontent = value; }
  480. }
  481. public int? InvoiceContentType
  482. {
  483. get { return _invoicecontenttype; }
  484. set { _invoicecontenttype = value; }
  485. }
  486. public int? OrdersType
  487. {
  488. get { return _orderstype; }
  489. set { _orderstype = value; }
  490. }
  491. public string Weight
  492. {
  493. get { return _weight; }
  494. set { _weight = value; }
  495. }
  496. public string Height
  497. {
  498. get { return _height; }
  499. set { _height = value; }
  500. }
  501. public int? HealthPrice
  502. {
  503. get { return _healthprice; }
  504. set { _healthprice = value; }
  505. }
  506. public string LeverNumber
  507. {
  508. get { return _levernumber; }
  509. set { _levernumber = value; }
  510. }
  511. public bool? IsO2O
  512. {
  513. get { return _iso2o; }
  514. set { _iso2o = value; }
  515. }
  516. public int? AdvancePayType
  517. {
  518. get { return _advancepaytype; }
  519. set { _advancepaytype = value; }
  520. }
  521. public DateTime? InventoryAuditDate
  522. {
  523. get { return _inventoryauditdate; }
  524. set { _inventoryauditdate = value; }
  525. }
  526. public string OrderProcessDate
  527. {
  528. get { return _orderprocessdate; }
  529. set { _orderprocessdate = value; }
  530. }
  531. public bool? AllocationFlag
  532. {
  533. get { return _allocationflag; }
  534. set { _allocationflag = value; }
  535. }
  536. public DateTime? BonusDate
  537. {
  538. get { return _bonusdate; }
  539. set { _bonusdate = value; }
  540. }
  541. public int? IntegralValue
  542. {
  543. get { return _integralvalue; }
  544. set { _integralvalue = value; }
  545. }
  546. public string IsToERP
  547. {
  548. get { return _istoerp; }
  549. set { _istoerp = value; }
  550. }
  551. public string MerchantNote
  552. {
  553. get { return _merchantnote; }
  554. set { _merchantnote = value; }
  555. }
  556. public string OtherNote
  557. {
  558. get { return _othernote; }
  559. set { _othernote = value; }
  560. }
  561. public bool? IsPrescription
  562. {
  563. get { return _isprescription; }
  564. set { _isprescription = value; }
  565. }
  566. public Guid ConfirmId
  567. {
  568. get { return _confirmid; }
  569. set { _confirmid = value; }
  570. }
  571. public string _id { get => _Id; set => _Id = value; }
  572. }
  573. }