OutOrderUserService.java 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. package com.goafanti.user.bo;
  2. import java.util.List;
  3. import com.goafanti.common.utils.excel.Excel;
  4. public class OutOrderUserService {
  5. @Excel(name = "订单编号")
  6. private String orderNo;
  7. @Excel(name = "合同编号")
  8. private String contractNo;
  9. @Excel(name = "状态",readConverterExp = "0=正常,1=作废,2=锁定,3=变更中")
  10. private Integer deleteSign;
  11. @Excel(name = "签单时间")
  12. private String signTimes;
  13. @Excel(name = "下单时间")
  14. private String orderTimes;
  15. @Excel(name = "订单部门")
  16. private String depName;
  17. @Excel(name = "客户名称")
  18. private String userName;
  19. @Excel(name = "申报项目")
  20. private String projects;
  21. @Excel(name = "咨询师")
  22. private String consultants;
  23. @Excel(name = "申报批次")
  24. private String declareBatchs;
  25. @Excel(name = "证书编号")
  26. private String certificationNos;
  27. @Excel(name = "最新跟进时间")
  28. private String newTimes;
  29. @Excel(name = "跟进客服")
  30. private String adminName;
  31. @Excel(name = "是否添加微信",readConverterExp = "0=否,1=是")
  32. private Integer addWechat;
  33. @Excel(name = "微信号")
  34. private String wechat;
  35. @Excel(name = "续签", readConverterExp = "0=其他,1=否,企业已签其他机构,2=否,企业自己申报,3=否,企业不打算申报/注销,"
  36. + "4=否,客户考虑中,无报价,5=否,客户考虑中,已报价,6=是,已续签/复审")
  37. private Integer renewal;
  38. @Excel(name = "续签时间")
  39. private String renewalTimes;
  40. @Excel(name = "签单项目")
  41. private String signProject;
  42. @Excel(name = "备注")
  43. private String remarks;
  44. @Excel(name = "技术端满意度",readConverterExp = "0=已投诉,1=不满意,2=一般满意,3=非常满意")
  45. private Integer techSatisfaction;
  46. @Excel(name = "业务端满意度",readConverterExp = "0=已投诉,1=不满意,2=一般满意,3=非常满意")
  47. private Integer businessSatisfaction;
  48. private String uid;
  49. private List<OrderProject> list;
  50. public Integer getTechSatisfaction() {
  51. return techSatisfaction;
  52. }
  53. public void setTechSatisfaction(Integer techSatisfaction) {
  54. this.techSatisfaction = techSatisfaction;
  55. }
  56. public Integer getBusinessSatisfaction() {
  57. return businessSatisfaction;
  58. }
  59. public void setBusinessSatisfaction(Integer businessSatisfaction) {
  60. this.businessSatisfaction = businessSatisfaction;
  61. }
  62. public Integer getDeleteSign() {
  63. return deleteSign;
  64. }
  65. public void setDeleteSign(Integer deleteSign) {
  66. this.deleteSign = deleteSign;
  67. }
  68. public String getOrderTimes() {
  69. return orderTimes;
  70. }
  71. public void setOrderTimes(String orderTimes) {
  72. this.orderTimes = orderTimes;
  73. }
  74. public String getOrderNo() {
  75. return orderNo;
  76. }
  77. public void setOrderNo(String orderNo) {
  78. this.orderNo = orderNo;
  79. }
  80. public String getContractNo() {
  81. return contractNo;
  82. }
  83. public void setContractNo(String contractNo) {
  84. this.contractNo = contractNo;
  85. }
  86. public String getSignTimes() {
  87. return signTimes;
  88. }
  89. public void setSignTimes(String signTimes) {
  90. this.signTimes = signTimes;
  91. }
  92. public String getUserName() {
  93. return userName;
  94. }
  95. public void setUserName(String userName) {
  96. this.userName = userName;
  97. }
  98. public String getProjects() {
  99. return projects;
  100. }
  101. public void setProjects(String projects) {
  102. this.projects = projects;
  103. }
  104. public String getConsultants() {
  105. return consultants;
  106. }
  107. public void setConsultants(String consultants) {
  108. this.consultants = consultants;
  109. }
  110. public String getDeclareBatchs() {
  111. return declareBatchs;
  112. }
  113. public void setDeclareBatchs(String declareBatchs) {
  114. this.declareBatchs = declareBatchs;
  115. }
  116. public String getCertificationNos() {
  117. StringBuffer s =new StringBuffer();
  118. if (!list.isEmpty()) {
  119. for (OrderProject p : list) {
  120. if (p.getCertificateNumber()!=null) {
  121. s.append(p.getCertificateNumber());
  122. }else {
  123. s.append("无");
  124. }
  125. s.append("/");
  126. }
  127. return s.substring(0, s.length()-1);
  128. }
  129. return certificationNos;
  130. }
  131. public void setCertificationNos(String certificationNos) {
  132. this.certificationNos = certificationNos;
  133. }
  134. public String getAdminName() {
  135. return adminName;
  136. }
  137. public void setAdminName(String adminName) {
  138. this.adminName = adminName;
  139. }
  140. public Integer getAddWechat() {
  141. return addWechat;
  142. }
  143. public void setAddWechat(Integer addWechat) {
  144. this.addWechat = addWechat;
  145. }
  146. public String getWechat() {
  147. return wechat;
  148. }
  149. public void setWechat(String wechat) {
  150. this.wechat = wechat;
  151. }
  152. public Integer getRenewal() {
  153. return renewal;
  154. }
  155. public void setRenewal(Integer renewal) {
  156. this.renewal = renewal;
  157. }
  158. public String getRenewalTimes() {
  159. return renewalTimes;
  160. }
  161. public void setRenewalTimes(String renewalTimes) {
  162. this.renewalTimes = renewalTimes;
  163. }
  164. public String getRemarks() {
  165. return remarks;
  166. }
  167. public void setRemarks(String remarks) {
  168. this.remarks = remarks;
  169. }
  170. public String getNewTimes() {
  171. return newTimes;
  172. }
  173. public void setNewTimes(String newTimes) {
  174. this.newTimes = newTimes;
  175. }
  176. public List<OrderProject> getList() {
  177. return list;
  178. }
  179. public void setList(List<OrderProject> list) {
  180. this.list = list;
  181. }
  182. public String getDepName() {
  183. return depName;
  184. }
  185. public void setDepName(String depName) {
  186. this.depName = depName;
  187. }
  188. public String getSignProject() {
  189. return signProject;
  190. }
  191. public void setSignProject(String signProject) {
  192. this.signProject = signProject;
  193. }
  194. public String getUid() {
  195. return uid;
  196. }
  197. public void setUid(String uid) {
  198. this.uid = uid;
  199. }
  200. }