BpOrderVo.java 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. package com.caimei.modules.bulkpurchase.entity;
  2. import com.thinkgem.jeesite.common.persistence.DataEntity;
  3. import java.math.BigDecimal;
  4. import java.util.Date;
  5. /**
  6. * 订单列表的导出实体类
  7. * @author zcp
  8. * @version 2018-04-17
  9. */
  10. public class BpOrderVo extends DataEntity<BpOrderVo> {
  11. private static final long serialVersionUID = 1L;
  12. private String stagesFlag; //分期标志
  13. private Date orderTime; //订单时间
  14. private Integer orderId; // 订单ID
  15. private String no; // 订单号
  16. private String payTotalFee; // 实付总额(应付)
  17. private String name; //会所名
  18. private String received; //已收
  19. private String uncollected; //未收
  20. private String shouldPayShop; //应付供应商合计
  21. private String unPayShop; //未付供应商合计
  22. private String alreadyPayCm; //采美佣金(已付采美)
  23. private String stagesNum; //分期才有第几期
  24. public Date getOrderTime() {
  25. return orderTime;
  26. }
  27. public void setOrderTime(Date orderTime) {
  28. this.orderTime = orderTime;
  29. }
  30. public Integer getOrderId() {
  31. return orderId;
  32. }
  33. public void setOrderId(Integer orderId) {
  34. this.orderId = orderId;
  35. }
  36. public String getNo() {
  37. return no;
  38. }
  39. public void setNo(String no) {
  40. this.no = no;
  41. }
  42. public String getPayTotalFee() {
  43. return payTotalFee;
  44. }
  45. public void setPayTotalFee(String payTotalFee) {
  46. this.payTotalFee = payTotalFee;
  47. }
  48. public String getName() {
  49. return name;
  50. }
  51. public void setName(String name) {
  52. this.name = name;
  53. }
  54. public String getReceived() {
  55. return received;
  56. }
  57. public void setReceived(String received) {
  58. this.received = received;
  59. }
  60. public String getUncollected() {
  61. return uncollected;
  62. }
  63. public void setUncollected(String uncollected) {
  64. this.uncollected = uncollected;
  65. }
  66. public String getShouldPayShop() {
  67. return shouldPayShop;
  68. }
  69. public void setShouldPayShop(String shouldPayShop) {
  70. this.shouldPayShop = shouldPayShop;
  71. }
  72. public String getUnPayShop() {
  73. return unPayShop;
  74. }
  75. public void setUnPayShop(String unPayShop) {
  76. this.unPayShop = unPayShop;
  77. }
  78. public String getAlreadyPayCm() {
  79. return alreadyPayCm;
  80. }
  81. public void setAlreadyPayCm(String alreadyPayCm) {
  82. this.alreadyPayCm = alreadyPayCm;
  83. }
  84. public String getStagesNum() {
  85. return stagesNum;
  86. }
  87. public void setStagesNum(String stagesNum) {
  88. this.stagesNum = stagesNum;
  89. }
  90. public String getStagesFlag() {
  91. return stagesFlag;
  92. }
  93. public void setStagesFlag(String stagesFlag) {
  94. this.stagesFlag = stagesFlag;
  95. }
  96. }