NewOrder.java 31 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133
  1. package com.caimei.modules.order.entity;
  2. import com.caimei.modules.bulkpurchase.entity.OrderInvoice;
  3. import com.caimei.modules.coupon.entity.CmCouponOrderRecord;
  4. import com.caimei.modules.hehe.entity.CmHeheCouponOrderRecord;
  5. import com.caimei.modules.product.entity.CmPromotion;
  6. import com.thinkgem.jeesite.common.persistence.DataEntity;
  7. import java.beans.Transient;
  8. import java.util.List;
  9. /**
  10. * @author lwt
  11. * @date 2018-07-24
  12. * @description 主订单表
  13. */
  14. public class NewOrder extends DataEntity<NewOrder> {
  15. private Integer orderSeen; //订单对机构可见度,1可见,2不可见
  16. private Integer orderID; // bigint(11) not null,
  17. private String orderNo; // varchar(30) comment '订单编号',
  18. private Integer userID; // bigint(11), 订单归属人
  19. //采美组织: 默认为null,具体对应cm_mall_organize表ID
  20. private Integer organizeID;
  21. private Integer organizeStoreId; // 组织门店id
  22. private String shopOrderIDs; // varchar(100) comment '子订单ID',
  23. private String orderSubmitType; // char(2) comment '订单提交类型',
  24. private String status; // char(2) comment '订单状态'
  25. // v5.0.0新状态 '0待确认,11待收待发,12待收部发,13待收全发,21部收待发,22部收部发,23部收全发,31已收待发,32已收部发,33已收全发,4交易完成,5订单完成,6已关闭,7交易全退'
  26. private Double productTotalFee; // decimal(20,6) comment '商品总金额',
  27. private Double shouldPayProduct; //应收商品金额==应付合计(只需要付商品金额)
  28. private String hasActProduct; // '是否包含活动商品(受订单未支付自动关闭时间影响) 0 否 1 是',
  29. private Double orderTotalFee; // decimal(20,6) comment '订单总金额',
  30. private Double payableAmount; // 应付金额
  31. private Double payTotalFee; // decimal(20,6) comment '支付金额',
  32. private Double balancePayFee; // decimal(20,6) comment '余额支付',
  33. private Double discountFee; // decimal(20,6) comment '折扣金额',
  34. private Double promotionFullReduction; //DECIMAL(20,2) DEFAULT 0.00 NULL COMMENT '促销满减优惠' AFTER `discountFee`,
  35. private Integer spID; // bigint(11),
  36. private Integer mainSpID; // bigint(6),
  37. private String note; // text comment '订单备注',
  38. private Integer clubID; // bigint(11),
  39. private String clubScanTime; // varchar(19),
  40. private String payWay; // 支付方式,(协销订单可能会存在多种进账方式用,隔开),
  41. private Integer payTypeID; // int(11) comment '支付类型',
  42. private String orderSource; // char(1) comment '订单来源',
  43. private String orderTime; // datetime comment '订单提交时间',
  44. private String confirmTime; // datetime comment '订单确认时间',
  45. private String cooFreeFlag; // char(1) comment '库分期免息状态',
  46. private Integer cooFreeRate; // int(3) comment '库分期分期费率',
  47. private Double cooFreeAmount; // decimal(20,2) comment '库分期免息金额',
  48. private String confirmFlag; // char(1) comment '订单确认标志',
  49. private Integer clauseID; // bigint(11) comment '条款ID',
  50. private String clauseContent; // text comment '条款内容',
  51. private String clauseName; // varchar(50) comment '条款名称',
  52. private String freePostFlag; // char(1) comment 免邮标志 运费:-1到付,0包邮,1需要运费
  53. private Double freight; // decimal(20,0) comment '运费' v5.0版本已废弃,运费已使用商品形式存储,
  54. // private Integer freePostageTicketID; // bigint(11) comment '包邮券ID',
  55. private Integer buyUserID;// 下单人
  56. private String orderType;// 订单类型 0协销订单、 1普通订单、 2呵呵订单
  57. private List<NewShopOrder> newShopOrders;
  58. private OrderUserInfo bpOrderUserinfo; //订单用户信息表
  59. private OrderInvoice orderInvoice;
  60. private Integer productCount; // 商品总数
  61. private Integer presentCount; // 赠送总数
  62. private Integer promotionalGiftsCount; // INT(11) NULL COMMENT '促销赠品总数' AFTER `presentCount
  63. private String payTime; //订单支付时间
  64. private String payFlag;//是否已支付 未支付0 已支付1
  65. private String onlinePayFlag;//能否显示支付 :0 能线上 1 线下
  66. private Double preferential; //总优惠 自助下单活动优惠 协销下单price-折后单价
  67. private String splitFlag; // 订单能否拆分 1 为可拆分, 0为不可拆分
  68. private String closeReason; //订单取消原因
  69. private String invoiceFlag; //是否开发票 0 不开 1 开发票
  70. // ---------------- v5.0.0 新加
  71. private String receiptStatus; //(收款买家)收款状态:1待收款、2部分收款、3已收款
  72. private String payStatus; //(付款供应商)付款状态:1待付款、2部分付款、3已付款
  73. private String sendOutStatus; //发货状态:1待发货、2部分发货、3已发货
  74. private String refundType; //退货退款类型:1部分退、2全部退
  75. private String postageOrderFlag = "0"; //邮费订单标识 1是邮费订单 0不是邮费订单
  76. private Double paidAmount;//已付金额(用户已支付金额包括余额支付和线上线下支付)
  77. private Double totalDiscount;//订单退款已退的经理折扣金额
  78. private Integer zeroCostFlag;//订单0成本标识
  79. private Integer userBeans;//采美豆抵扣运费数量(100:1)
  80. // ----------------- v5.0.0 end
  81. //------------- 虚拟字段 ----------------------------
  82. private String shopName; //供应商
  83. private String receiver;//收货人
  84. private String buyer;//买家
  85. private String alreadyReceipt;//已收金额(需要包含运费,目前只存在普通订单存在运费)
  86. private String unReceipt;//未收金额(需要包含运费,目前只存在普通订单存在运费)
  87. private String paid;//已付金额(不需要包含运费,等同于订单商品金额)
  88. private String unpaid;//未付金额(不需要包含运费,等同于订单商品金额)
  89. private Double brokerage;//佣金
  90. private String buyerName; //买家名称
  91. private String mobile; //手机
  92. private String address; //地址
  93. private String startTime;
  94. private String endTime;
  95. private String startConfirmTime;
  96. private String endConfirmTime;
  97. private String startRefundTime;
  98. private String endRefundTime;
  99. private Double totalAddedValueTax;//总税费
  100. private String shopNameInfo;//
  101. private String orderRefundType = "";//
  102. private String returnedPurchaseStatus;//1审核中,0不是审核中
  103. private String applyReturnedPurchaseFlag;//0不可以申请,1可以申请(此标记只用于是否存在审核中或者审核不通过记录,存在记录则不可以申请)
  104. private String spName;
  105. private Integer serviceProviderId; //协销Id
  106. private String productName; //商品名称(根据商品名称筛选订单)
  107. private List<NewOrderProduct> orderProduct;// 订单内的商品集合
  108. // 促销
  109. private List<CmPromotion> promotions;
  110. private String searchflag;//0搜索,1导出
  111. private String[] shopNote; //子订单备注 修改时用来记录一下的
  112. private String rebateOrder; //是不是返佣订单 是的1, 不是的0
  113. private String[] ps; //付款状态集合
  114. private String shopOrderNo;// varchar(30) comment '子订单编号'
  115. private String toAudit; //有没有收款待审核的订单 , 有的1
  116. private Double shouldPayShopAmount; //付供应商总金额
  117. private Double returnValue; //退款总金额
  118. private Boolean returnedFreightFlag;//机构运费退货标识
  119. private String clubName; //会所名称
  120. // 收款确认类型(1小额抹平确认,2大额抹平确认,3大额退款余额,4确认关联)
  121. private String confirmType;
  122. private Double orderReceivedAmount;//订单已收金额(此收款只计算线上线下收款记录payableAmount表金额)
  123. private Double returnBalanceAmount;// 退款余额金额
  124. private String secondHandOrderFlag;//二手商品订单标识 0非二手商品订单、 1二手商品订单
  125. private boolean receiptOrderFlag;// 判断订单中抹平的订单是否是和多个订单一起支付的,
  126. private Integer rechargeGoods; //1,缴纳订金;2,充值余额
  127. private String affirmPaymentFlag;// 二手订单确认付款供应商标识 0未确认,1已确认
  128. private String rebateFlag;//返佣订单标识,0非返佣订单,1返佣订单
  129. private String associationType;//订单关联方式: 1手动 2自动
  130. private Double ableUserMoney; //当前下单用户可用余额
  131. private String organizeStoreName;//组织门店名称
  132. /**
  133. * 优惠券机构关联ID
  134. */
  135. private Integer clubCouponId;
  136. private Double couponAmount; //优惠券抵扣金额
  137. private CmCouponOrderRecord couponOrderRecord; //优惠券信息
  138. private Double svipFullReduction; //超级会员优惠
  139. private Integer collageFlag; // 拼团订单标识:1拼团订单,0不是
  140. private Integer collageStatus; // 拼团状态:1拼团中,2已拼成
  141. private Double reductionAmount; //分享减免金额
  142. private Double reductionTouchPrice; //分享减免条件
  143. /**
  144. * 呵呵商城优惠券
  145. */
  146. private Integer receiveCouponId;
  147. private CmHeheCouponOrderRecord heheCouponRecord; //优惠券信息
  148. public Integer getOrderSeen() {
  149. return orderSeen;
  150. }
  151. public void setOrderSeen(Integer orderSeen) {
  152. this.orderSeen = orderSeen;
  153. }
  154. public Integer getClubCouponId() {
  155. return clubCouponId;
  156. }
  157. public void setClubCouponId(Integer clubCouponId) {
  158. this.clubCouponId = clubCouponId;
  159. }
  160. public List<CmPromotion> getPromotions() {
  161. return promotions;
  162. }
  163. public void setPromotions(List<CmPromotion> promotions) {
  164. this.promotions = promotions;
  165. }
  166. public Double getPromotionFullReduction() {
  167. return promotionFullReduction;
  168. }
  169. public void setPromotionFullReduction(Double promotionFullReduction) {
  170. this.promotionFullReduction = promotionFullReduction;
  171. }
  172. public Integer getPromotionalGiftsCount() {
  173. return promotionalGiftsCount;
  174. }
  175. public void setPromotionalGiftsCount(Integer promotionalGiftsCount) {
  176. this.promotionalGiftsCount = promotionalGiftsCount;
  177. }
  178. public String getClubName() {
  179. return clubName;
  180. }
  181. public void setClubName(String clubName) {
  182. this.clubName = clubName;
  183. }
  184. public Double getReturnValue() {
  185. return returnValue;
  186. }
  187. public void setReturnValue(Double returnValue) {
  188. this.returnValue = returnValue;
  189. }
  190. public Double getShouldPayShopAmount() {
  191. return shouldPayShopAmount;
  192. }
  193. public void setShouldPayShopAmount(Double shouldPayShopAmount) {
  194. this.shouldPayShopAmount = shouldPayShopAmount;
  195. }
  196. public Integer getOrganizeID() {
  197. return organizeID;
  198. }
  199. public void setOrganizeID(Integer organizeID) {
  200. this.organizeID = organizeID;
  201. }
  202. public String getToAudit() {
  203. return toAudit;
  204. }
  205. public void setToAudit(String toAudit) {
  206. this.toAudit = toAudit;
  207. }
  208. public String[] getPs() {
  209. return ps;
  210. }
  211. public void setPs(String[] ps) {
  212. this.ps = ps;
  213. }
  214. public String getShopOrderNo() {
  215. return shopOrderNo;
  216. }
  217. public void setShopOrderNo(String shopOrderNo) {
  218. this.shopOrderNo = shopOrderNo;
  219. }
  220. public Integer getOrderID() {
  221. return orderID;
  222. }
  223. public void setOrderID(Integer orderID) {
  224. this.orderID = orderID;
  225. }
  226. public Double getShouldPayProduct() {
  227. return shouldPayProduct;
  228. }
  229. public void setShouldPayProduct(Double shouldPayProduct) {
  230. this.shouldPayProduct = shouldPayProduct;
  231. }
  232. public String getSearchflag() {
  233. return searchflag;
  234. }
  235. public void setSearchflag(String searchflag) {
  236. this.searchflag = searchflag;
  237. }
  238. public String getOrderNo() {
  239. return orderNo;
  240. }
  241. public void setOrderNo(String orderNo) {
  242. this.orderNo = orderNo;
  243. }
  244. public Integer getUserID() {
  245. return userID;
  246. }
  247. public void setUserID(Integer userID) {
  248. this.userID = userID;
  249. }
  250. public String getShopOrderIDs() {
  251. return shopOrderIDs;
  252. }
  253. public void setShopOrderIDs(String shopOrderIDs) {
  254. this.shopOrderIDs = shopOrderIDs;
  255. }
  256. public String getOrderSubmitType() {
  257. return orderSubmitType;
  258. }
  259. public void setOrderSubmitType(String orderSubmitType) {
  260. this.orderSubmitType = orderSubmitType;
  261. }
  262. public String getStatus() {
  263. return status;
  264. }
  265. public void setStatus(String status) {
  266. this.status = status;
  267. }
  268. public Double getProductTotalFee() {
  269. return productTotalFee;
  270. }
  271. public void setProductTotalFee(Double productTotalFee) {
  272. this.productTotalFee = productTotalFee;
  273. }
  274. public Double getOrderTotalFee() {
  275. return orderTotalFee;
  276. }
  277. public void setOrderTotalFee(Double orderTotalFee) {
  278. this.orderTotalFee = orderTotalFee;
  279. }
  280. public Double getPayTotalFee() {
  281. return payTotalFee;
  282. }
  283. public void setPayTotalFee(Double payTotalFee) {
  284. this.payTotalFee = payTotalFee;
  285. }
  286. public Double getBalancePayFee() {
  287. return balancePayFee;
  288. }
  289. public void setBalancePayFee(Double balancePayFee) {
  290. this.balancePayFee = balancePayFee;
  291. }
  292. public Double getDiscountFee() {
  293. return discountFee;
  294. }
  295. public void setDiscountFee(Double discountFee) {
  296. this.discountFee = discountFee;
  297. }
  298. public Integer getSpID() {
  299. return spID;
  300. }
  301. public void setSpID(Integer spID) {
  302. this.spID = spID;
  303. }
  304. public Integer getMainSpID() {
  305. return mainSpID;
  306. }
  307. public void setMainSpID(Integer mainSpID) {
  308. this.mainSpID = mainSpID;
  309. }
  310. public String getNote() {
  311. return note;
  312. }
  313. public void setNote(String note) {
  314. this.note = note;
  315. }
  316. public Integer getClubID() {
  317. return clubID;
  318. }
  319. public void setClubID(Integer clubID) {
  320. this.clubID = clubID;
  321. }
  322. public String getClubScanTime() {
  323. return clubScanTime;
  324. }
  325. public void setClubScanTime(String clubScanTime) {
  326. this.clubScanTime = clubScanTime;
  327. }
  328. public String getPayWay() {
  329. return payWay;
  330. }
  331. public void setPayWay(String payWay) {
  332. this.payWay = payWay;
  333. }
  334. public Integer getPayTypeID() {
  335. return payTypeID;
  336. }
  337. public void setPayTypeID(Integer payTypeID) {
  338. this.payTypeID = payTypeID;
  339. }
  340. public String getOrderSource() {
  341. return orderSource;
  342. }
  343. public void setOrderSource(String orderSource) {
  344. this.orderSource = orderSource;
  345. }
  346. public String getOrderTime() {
  347. return orderTime;
  348. }
  349. public void setOrderTime(String orderTime) {
  350. this.orderTime = orderTime;
  351. }
  352. public String getCooFreeFlag() {
  353. return cooFreeFlag;
  354. }
  355. public void setCooFreeFlag(String cooFreeFlag) {
  356. this.cooFreeFlag = cooFreeFlag;
  357. }
  358. public Integer getCooFreeRate() {
  359. return cooFreeRate;
  360. }
  361. public void setCooFreeRate(Integer cooFreeRate) {
  362. this.cooFreeRate = cooFreeRate;
  363. }
  364. public Double getCooFreeAmount() {
  365. return cooFreeAmount;
  366. }
  367. public void setCooFreeAmount(Double cooFreeAmount) {
  368. this.cooFreeAmount = cooFreeAmount;
  369. }
  370. public String getConfirmFlag() {
  371. return confirmFlag;
  372. }
  373. public void setConfirmFlag(String confirmFlag) {
  374. this.confirmFlag = confirmFlag;
  375. }
  376. public Integer getClauseID() {
  377. return clauseID;
  378. }
  379. public void setClauseID(Integer clauseID) {
  380. this.clauseID = clauseID;
  381. }
  382. public String getClauseContent() {
  383. return clauseContent;
  384. }
  385. public void setClauseContent(String clauseContent) {
  386. this.clauseContent = clauseContent;
  387. }
  388. public String getClauseName() {
  389. return clauseName;
  390. }
  391. public void setClauseName(String clauseName) {
  392. this.clauseName = clauseName;
  393. }
  394. public String getFreePostFlag() {
  395. return freePostFlag;
  396. }
  397. public void setFreePostFlag(String freePostFlag) {
  398. this.freePostFlag = freePostFlag;
  399. }
  400. public Double getFreight() {
  401. return freight;
  402. }
  403. public void setFreight(Double freight) {
  404. this.freight = freight;
  405. }
  406. public Integer getBuyUserID() {
  407. return buyUserID;
  408. }
  409. public void setBuyUserID(Integer buyUserID) {
  410. this.buyUserID = buyUserID;
  411. }
  412. public String getOrderType() {
  413. return orderType;
  414. }
  415. public void setOrderType(String orderType) {
  416. this.orderType = orderType;
  417. }
  418. public List<NewShopOrder> getNewShopOrders() {
  419. return newShopOrders;
  420. }
  421. public void setNewShopOrders(List<NewShopOrder> newShopOrders) {
  422. this.newShopOrders = newShopOrders;
  423. }
  424. public OrderInvoice getOrderInvoice() {
  425. return orderInvoice;
  426. }
  427. public void setOrderInvoice(OrderInvoice orderInvoice) {
  428. this.orderInvoice = orderInvoice;
  429. }
  430. public Integer getProductCount() {
  431. return productCount;
  432. }
  433. public void setProductCount(Integer productCount) {
  434. this.productCount = productCount;
  435. }
  436. public Integer getPresentCount() {
  437. return presentCount;
  438. }
  439. public void setPresentCount(Integer presentCount) {
  440. this.presentCount = presentCount;
  441. }
  442. @Transient
  443. public List<NewOrderProduct> getOrderProduct() {
  444. return orderProduct;
  445. }
  446. public void setOrderProduct(List<NewOrderProduct> orderProduct) {
  447. this.orderProduct = orderProduct;
  448. }
  449. @Transient
  450. public String getBuyerName() {
  451. return buyerName;
  452. }
  453. public void setBuyerName(String buyerName) {
  454. this.buyerName = buyerName;
  455. }
  456. @Transient
  457. public String getStartTime() {
  458. return startTime;
  459. }
  460. public void setStartTime(String startTime) {
  461. this.startTime = startTime;
  462. }
  463. @Transient
  464. public String getEndTime() {
  465. return endTime;
  466. }
  467. public void setEndTime(String endTime) {
  468. this.endTime = endTime;
  469. }
  470. @Transient
  471. public String getShopName() {
  472. return shopName;
  473. }
  474. public void setShopName(String shopName) {
  475. this.shopName = shopName;
  476. }
  477. @Transient
  478. public String getReceiver() {
  479. return receiver;
  480. }
  481. public void setReceiver(String receiver) {
  482. this.receiver = receiver;
  483. }
  484. @Transient
  485. public String getBuyer() {
  486. return buyer;
  487. }
  488. public void setBuyer(String buyer) {
  489. this.buyer = buyer;
  490. }
  491. @Transient
  492. public String getAlreadyReceipt() {
  493. return alreadyReceipt;
  494. }
  495. public void setAlreadyReceipt(String alreadyReceipt) {
  496. this.alreadyReceipt = alreadyReceipt;
  497. }
  498. @Transient
  499. public String getUnReceipt() {
  500. return unReceipt;
  501. }
  502. public void setUnReceipt(String unReceipt) {
  503. this.unReceipt = unReceipt;
  504. }
  505. @Transient
  506. public String getPaid() {
  507. return paid;
  508. }
  509. public void setPaid(String paid) {
  510. this.paid = paid;
  511. }
  512. @Transient
  513. public String getUnpaid() {
  514. return unpaid;
  515. }
  516. public void setUnpaid(String unpaid) {
  517. this.unpaid = unpaid;
  518. }
  519. @Transient
  520. public Double getBrokerage() {
  521. return brokerage;
  522. }
  523. public void setBrokerage(Double brokerage) {
  524. this.brokerage = brokerage;
  525. }
  526. public OrderUserInfo getBpOrderUserinfo() {
  527. return bpOrderUserinfo;
  528. }
  529. public void setBpOrderUserinfo(OrderUserInfo bpOrderUserinfo) {
  530. this.bpOrderUserinfo = bpOrderUserinfo;
  531. }
  532. public String getPayTime() {
  533. return payTime;
  534. }
  535. public void setPayTime(String payTime) {
  536. this.payTime = payTime;
  537. }
  538. public Double getPreferential() {
  539. return preferential;
  540. }
  541. public void setPreferential(Double preferential) {
  542. this.preferential = preferential;
  543. }
  544. @Transient
  545. public String getMobile() {
  546. return mobile;
  547. }
  548. public void setMobile(String mobile) {
  549. this.mobile = mobile;
  550. }
  551. @Transient
  552. public String getAddress() {
  553. return address;
  554. }
  555. public void setAddress(String address) {
  556. this.address = address;
  557. }
  558. @Transient
  559. public String getSplitFlag() {
  560. return splitFlag;
  561. }
  562. public void setSplitFlag(String splitFlag) {
  563. this.splitFlag = splitFlag;
  564. }
  565. @Transient
  566. public Double getTotalAddedValueTax() {
  567. return totalAddedValueTax;
  568. }
  569. public void setTotalAddedValueTax(Double totalAddedValueTax) {
  570. this.totalAddedValueTax = totalAddedValueTax;
  571. }
  572. public String getPayFlag() {
  573. return payFlag;
  574. }
  575. public void setPayFlag(String payFlag) {
  576. this.payFlag = payFlag;
  577. }
  578. public String getOnlinePayFlag() {
  579. return onlinePayFlag;
  580. }
  581. public void setOnlinePayFlag(String onlinePayFlag) {
  582. this.onlinePayFlag = onlinePayFlag;
  583. }
  584. public String getHasActProduct() {
  585. return hasActProduct;
  586. }
  587. public void setHasActProduct(String hasActProduct) {
  588. this.hasActProduct = hasActProduct;
  589. }
  590. public String getConfirmTime() {
  591. return confirmTime;
  592. }
  593. public void setConfirmTime(String confirmTime) {
  594. this.confirmTime = confirmTime;
  595. }
  596. public String getCloseReason() {
  597. return closeReason;
  598. }
  599. public void setCloseReason(String closeReason) {
  600. this.closeReason = closeReason;
  601. }
  602. @Transient
  603. public String getShopNameInfo() {
  604. return shopNameInfo;
  605. }
  606. public void setShopNameInfo(String shopNameInfo) {
  607. this.shopNameInfo = shopNameInfo;
  608. }
  609. public String getInvoiceFlag() {
  610. return invoiceFlag;
  611. }
  612. public void setInvoiceFlag(String invoiceFlag) {
  613. this.invoiceFlag = invoiceFlag;
  614. }
  615. public Double getPayableAmount() {
  616. return payableAmount;
  617. }
  618. public void setPayableAmount(Double payableAmount) {
  619. this.payableAmount = payableAmount;
  620. }
  621. public String getReceiptStatus() {
  622. return receiptStatus;
  623. }
  624. public void setReceiptStatus(String receiptStatus) {
  625. this.receiptStatus = receiptStatus;
  626. }
  627. public String getPayStatus() {
  628. return payStatus;
  629. }
  630. public void setPayStatus(String payStatus) {
  631. this.payStatus = payStatus;
  632. }
  633. public String getSendOutStatus() {
  634. return sendOutStatus;
  635. }
  636. public void setSendOutStatus(String sendOutStatus) {
  637. this.sendOutStatus = sendOutStatus;
  638. }
  639. public String getRefundType() {
  640. return refundType;
  641. }
  642. public void setRefundType(String refundType) {
  643. this.refundType = refundType;
  644. }
  645. public String getStartRefundTime() {
  646. return startRefundTime;
  647. }
  648. public void setStartRefundTime(String startRefundTime) {
  649. this.startRefundTime = startRefundTime;
  650. }
  651. public String getEndRefundTime() {
  652. return endRefundTime;
  653. }
  654. public void setEndRefundTime(String endRefundTime) {
  655. this.endRefundTime = endRefundTime;
  656. }
  657. public String getOrderRefundType() {
  658. return orderRefundType;
  659. }
  660. public void setOrderRefundType(String orderRefundType) {
  661. this.orderRefundType = orderRefundType;
  662. }
  663. public String[] getShopNote() {
  664. return shopNote;
  665. }
  666. public void setShopNote(String[] shopNote) {
  667. this.shopNote = shopNote;
  668. }
  669. public String getPostageOrderFlag() {
  670. return postageOrderFlag;
  671. }
  672. public void setPostageOrderFlag(String postageOrderFlag) {
  673. this.postageOrderFlag = postageOrderFlag;
  674. }
  675. @Transient
  676. public String getRebateOrder() {
  677. return rebateOrder;
  678. }
  679. public void setRebateOrder(String rebateOrder) {
  680. this.rebateOrder = rebateOrder;
  681. }
  682. @Transient
  683. public String getReturnedPurchaseStatus() {
  684. return returnedPurchaseStatus;
  685. }
  686. public void setReturnedPurchaseStatus(String returnedPurchaseStatus) {
  687. this.returnedPurchaseStatus = returnedPurchaseStatus;
  688. }
  689. @Transient
  690. public String getSpName() {
  691. return spName;
  692. }
  693. public void setSpName(String spName) {
  694. this.spName = spName;
  695. }
  696. public String getApplyReturnedPurchaseFlag() {
  697. return applyReturnedPurchaseFlag;
  698. }
  699. public void setApplyReturnedPurchaseFlag(String applyReturnedPurchaseFlag) {
  700. this.applyReturnedPurchaseFlag = applyReturnedPurchaseFlag;
  701. }
  702. @Transient
  703. public Double getPaidAmount() {
  704. return paidAmount;
  705. }
  706. public void setPaidAmount(Double paidAmount) {
  707. this.paidAmount = paidAmount;
  708. }
  709. @Transient
  710. public Double getTotalDiscount() {
  711. return totalDiscount;
  712. }
  713. public void setTotalDiscount(Double totalDiscount) {
  714. this.totalDiscount = totalDiscount;
  715. }
  716. public String getStartConfirmTime() {
  717. return startConfirmTime;
  718. }
  719. public void setStartConfirmTime(String startConfirmTime) {
  720. this.startConfirmTime = startConfirmTime;
  721. }
  722. public String getEndConfirmTime() {
  723. return endConfirmTime;
  724. }
  725. public void setEndConfirmTime(String endConfirmTime) {
  726. this.endConfirmTime = endConfirmTime;
  727. }
  728. public String getConfirmType() {
  729. return confirmType;
  730. }
  731. public void setConfirmType(String confirmType) {
  732. this.confirmType = confirmType;
  733. }
  734. public Double getOrderReceivedAmount() {
  735. return orderReceivedAmount;
  736. }
  737. public void setOrderReceivedAmount(Double orderReceivedAmount) {
  738. this.orderReceivedAmount = orderReceivedAmount;
  739. }
  740. public Double getReturnBalanceAmount() {
  741. return returnBalanceAmount;
  742. }
  743. public void setReturnBalanceAmount(Double returnBalanceAmount) {
  744. this.returnBalanceAmount = returnBalanceAmount;
  745. }
  746. public String getSecondHandOrderFlag() {
  747. return secondHandOrderFlag;
  748. }
  749. public void setSecondHandOrderFlag(String secondHandOrderFlag) {
  750. this.secondHandOrderFlag = secondHandOrderFlag;
  751. }
  752. public boolean isReceiptOrderFlag() {
  753. return receiptOrderFlag;
  754. }
  755. public void setReceiptOrderFlag(boolean receiptOrderFlag) {
  756. this.receiptOrderFlag = receiptOrderFlag;
  757. }
  758. public Integer getRechargeGoods() {
  759. return rechargeGoods;
  760. }
  761. public void setRechargeGoods(Integer rechargeGoods) {
  762. this.rechargeGoods = rechargeGoods;
  763. }
  764. public String getAffirmPaymentFlag() {
  765. return affirmPaymentFlag;
  766. }
  767. public void setAffirmPaymentFlag(String affirmPaymentFlag) {
  768. this.affirmPaymentFlag = affirmPaymentFlag;
  769. }
  770. public String getRebateFlag() {
  771. return rebateFlag;
  772. }
  773. public void setRebateFlag(String rebateFlag) {
  774. this.rebateFlag = rebateFlag;
  775. }
  776. public Integer getZeroCostFlag() {
  777. return zeroCostFlag;
  778. }
  779. public void setZeroCostFlag(Integer zeroCostFlag) {
  780. this.zeroCostFlag = zeroCostFlag;
  781. }
  782. public Integer getUserBeans() {
  783. return userBeans;
  784. }
  785. public void setUserBeans(Integer userBeans) {
  786. this.userBeans = userBeans;
  787. }
  788. public String getAssociationType() {
  789. return associationType;
  790. }
  791. public void setAssociationType(String associationType) {
  792. this.associationType = associationType;
  793. }
  794. public Boolean getReturnedFreightFlag() {
  795. return returnedFreightFlag;
  796. }
  797. public void setReturnedFreightFlag(Boolean returnedFreightFlag) {
  798. this.returnedFreightFlag = returnedFreightFlag;
  799. }
  800. public Integer getServiceProviderId() {
  801. return serviceProviderId;
  802. }
  803. public void setServiceProviderId(Integer serviceProviderId) {
  804. this.serviceProviderId = serviceProviderId;
  805. }
  806. public String getProductName() {
  807. return productName;
  808. }
  809. public void setProductName(String productName) {
  810. this.productName = productName;
  811. }
  812. public Double getAbleUserMoney() {
  813. return ableUserMoney;
  814. }
  815. public void setAbleUserMoney(Double ableUserMoney) {
  816. this.ableUserMoney = ableUserMoney;
  817. }
  818. public Integer getOrganizeStoreId() {
  819. return organizeStoreId;
  820. }
  821. public void setOrganizeStoreId(Integer organizeStoreId) {
  822. this.organizeStoreId = organizeStoreId;
  823. }
  824. public String getOrganizeStoreName() {
  825. return organizeStoreName;
  826. }
  827. public void setOrganizeStoreName(String organizeStoreName) {
  828. this.organizeStoreName = organizeStoreName;
  829. }
  830. public Double getCouponAmount() {
  831. return couponAmount;
  832. }
  833. public void setCouponAmount(Double couponAmount) {
  834. this.couponAmount = couponAmount;
  835. }
  836. public CmCouponOrderRecord getCouponOrderRecord() {
  837. return couponOrderRecord;
  838. }
  839. public void setCouponOrderRecord(CmCouponOrderRecord couponOrderRecord) {
  840. this.couponOrderRecord = couponOrderRecord;
  841. }
  842. public Double getSvipFullReduction() {
  843. return svipFullReduction;
  844. }
  845. public void setSvipFullReduction(Double svipFullReduction) {
  846. this.svipFullReduction = svipFullReduction;
  847. }
  848. public Integer getReceiveCouponId() {
  849. return receiveCouponId;
  850. }
  851. public void setReceiveCouponId(Integer receiveCouponId) {
  852. this.receiveCouponId = receiveCouponId;
  853. }
  854. public CmHeheCouponOrderRecord getHeheCouponRecord() {
  855. return heheCouponRecord;
  856. }
  857. public void setHeheCouponRecord(CmHeheCouponOrderRecord heheCouponRecord) {
  858. this.heheCouponRecord = heheCouponRecord;
  859. }
  860. public Integer getCollageFlag() {
  861. return collageFlag;
  862. }
  863. public void setCollageFlag(Integer collageFlag) {
  864. this.collageFlag = collageFlag;
  865. }
  866. public Integer getCollageStatus() {
  867. return collageStatus;
  868. }
  869. public void setCollageStatus(Integer collageStatus) {
  870. this.collageStatus = collageStatus;
  871. }
  872. public Double getReductionAmount() {
  873. return reductionAmount;
  874. }
  875. public void setReductionAmount(Double reductionAmount) {
  876. this.reductionAmount = reductionAmount;
  877. }
  878. public Double getReductionTouchPrice() {
  879. return reductionTouchPrice;
  880. }
  881. public void setReductionTouchPrice(Double reductionTouchPrice) {
  882. this.reductionTouchPrice = reductionTouchPrice;
  883. }
  884. }