OutOrderSalesSource.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. package com.goafanti.order.bo;
  2. import com.goafanti.common.utils.excel.Excel;
  3. import java.math.BigDecimal;
  4. public class OutOrderSalesSource {
  5. private Integer province;
  6. @Excel(name = "省份",width = 10)
  7. private String name;
  8. @Excel(name = "签单金额(万元)",scale=6)
  9. private BigDecimal totalAmount;
  10. @Excel(name = "签单数(个)",width = 10)
  11. private Integer counts;
  12. @Excel(name = "电话新开发",width = 10)
  13. private Integer dhxkf;
  14. @Excel(name = "电话新开发占比",percentage = 1,width = 10)
  15. private String dhxkfl;
  16. @Excel(name = "电话自带资源",width = 10)
  17. private Integer dhzdzy;
  18. @Excel(name = "电话自带资源占比",percentage = 1,width = 10)
  19. private String dhzdzyl;
  20. @Excel(name = "网络",width = 10)
  21. private Integer wl;
  22. @Excel(name = "网络占比",percentage = 1,width = 10)
  23. private String wll;
  24. @Excel(name = "渠道",width = 10)
  25. private Integer qd;
  26. @Excel(name = "渠道占比",percentage = 1,width = 10)
  27. private String qdl;
  28. @Excel(name = "转介绍",width = 10)
  29. private Integer zjs;
  30. @Excel(name = "转介绍占比",percentage = 1,width = 10)
  31. private String zjsl;
  32. @Excel(name = "其他",width = 10)
  33. private Integer qt;
  34. @Excel(name = "其他占比",percentage = 1,width = 10)
  35. private String qtl;
  36. @Excel(name = "高新复购",width = 10)
  37. private Integer gxfg;
  38. @Excel(name = "高新复购占比",percentage = 1,width = 10)
  39. private String gxfgl;
  40. @Excel(name = "其他复购",width = 10)
  41. private Integer qtfg;
  42. @Excel(name = "其他复购占比",percentage = 1,width = 10)
  43. private String qtfgl;
  44. public Integer getProvince() {
  45. return province;
  46. }
  47. public void setProvince(Integer province) {
  48. this.province = province;
  49. }
  50. public String getName() {
  51. return name;
  52. }
  53. public void setName(String name) {
  54. this.name = name;
  55. }
  56. public BigDecimal getTotalAmount() {
  57. return totalAmount;
  58. }
  59. public void setTotalAmount(BigDecimal totalAmount) {
  60. this.totalAmount = totalAmount;
  61. }
  62. public Integer getCounts() {
  63. return counts;
  64. }
  65. public void setCounts(Integer counts) {
  66. this.counts = counts;
  67. }
  68. public Integer getDhxkf() {
  69. return dhxkf;
  70. }
  71. public void setDhxkf(Integer dhxkf) {
  72. this.dhxkf = dhxkf;
  73. }
  74. public String getDhxkfl() {
  75. return dhxkfl;
  76. }
  77. public void setDhxkfl(String dhxkfl) {
  78. this.dhxkfl = dhxkfl;
  79. }
  80. public Integer getDhzdzy() {
  81. return dhzdzy;
  82. }
  83. public void setDhzdzy(Integer dhzdzy) {
  84. this.dhzdzy = dhzdzy;
  85. }
  86. public String getDhzdzyl() {
  87. return dhzdzyl;
  88. }
  89. public void setDhzdzyl(String dhzdzyl) {
  90. this.dhzdzyl = dhzdzyl;
  91. }
  92. public Integer getWl() {
  93. return wl;
  94. }
  95. public void setWl(Integer wl) {
  96. this.wl = wl;
  97. }
  98. public String getWll() {
  99. return wll;
  100. }
  101. public void setWll(String wll) {
  102. this.wll = wll;
  103. }
  104. public Integer getQd() {
  105. return qd;
  106. }
  107. public void setQd(Integer qd) {
  108. this.qd = qd;
  109. }
  110. public String getQdl() {
  111. return qdl;
  112. }
  113. public void setQdl(String qdl) {
  114. this.qdl = qdl;
  115. }
  116. public Integer getZjs() {
  117. return zjs;
  118. }
  119. public void setZjs(Integer zjs) {
  120. this.zjs = zjs;
  121. }
  122. public String getZjsl() {
  123. return zjsl;
  124. }
  125. public void setZjsl(String zjsl) {
  126. this.zjsl = zjsl;
  127. }
  128. public Integer getQt() {
  129. return qt;
  130. }
  131. public void setQt(Integer qt) {
  132. this.qt = qt;
  133. }
  134. public String getQtl() {
  135. return qtl;
  136. }
  137. public void setQtl(String qtl) {
  138. this.qtl = qtl;
  139. }
  140. public Integer getGxfg() {
  141. return gxfg;
  142. }
  143. public void setGxfg(Integer gxfg) {
  144. this.gxfg = gxfg;
  145. }
  146. public String getGxfgl() {
  147. return gxfgl;
  148. }
  149. public void setGxfgl(String gxfgl) {
  150. this.gxfgl = gxfgl;
  151. }
  152. public Integer getQtfg() {
  153. return qtfg;
  154. }
  155. public void setQtfg(Integer qtfg) {
  156. this.qtfg = qtfg;
  157. }
  158. public String getQtfgl() {
  159. return qtfgl;
  160. }
  161. public void setQtfgl(String qtfgl) {
  162. this.qtfgl = qtfgl;
  163. }
  164. }