OutSelectUserArchives.java 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328
  1. package com.goafanti.customer.bo;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.goafanti.common.utils.excel.Excel;
  4. import java.util.Date;
  5. public class OutSelectUserArchives {
  6. private String id;
  7. @Excel(name = "客户名称")
  8. private String nickname;
  9. @Excel(name = "省",width = 8)
  10. private String province;
  11. @Excel(name = "市",width = 8)
  12. private String city;
  13. @Excel(name = "区",width = 8)
  14. private String area;
  15. @Excel(name = "客户类型",readConverterExp = "0=私有客户,1=公共客户,2=签单客户,3=外联客户",width = 8)
  16. private Integer shareType;
  17. @Excel(name = "签单标识",readConverterExp = "0=否,1=是",width = 8)
  18. private Integer signBills;
  19. @Excel(name = "主营产品")
  20. private String businessScope;
  21. private Integer channelType;
  22. private Integer enterpriseCount;
  23. private String channelIndicators;
  24. private String interviewDistribution;
  25. @Excel(name = "行业",width = 8)
  26. private String industry;
  27. @Excel(name = "联系人")
  28. private String contactName;
  29. private String contactMobile;
  30. @Excel(name = "所属人")
  31. private String adminName;
  32. @Excel(name = "意向合作项目")
  33. private String intendedProject;
  34. @Excel(name = "专利数",width = 8)
  35. private Integer patentCount;
  36. @Excel(name = "发明专利数",width = 8)
  37. private Integer inventionPatentCount;
  38. @Excel(name = "实用新型数",width = 8)
  39. private Integer utilityModelCount;
  40. @Excel(name = "外观专利数",width = 8)
  41. private Integer appearancePatentCount;
  42. @Excel(name = "软著数",width = 8)
  43. private Integer softwareWorksCount;
  44. @Excel(name = "其他数",width = 8)
  45. private Integer otherCount;
  46. @Excel(name = "财务数据")
  47. private String financialData;
  48. @Excel(name = "前期沟通")
  49. private String earlyCommunication;
  50. @Excel(name = "面谈思路及目的")
  51. private String interviewIdeas;
  52. /**
  53. * 母/子公司数
  54. */
  55. @Excel(name = "母/子公司数",width = 8)
  56. private Integer companyCount;
  57. /**
  58. * 社保人数
  59. */
  60. @Excel(name = "社保人数",width = 8)
  61. private Integer socialSecurityCount;
  62. /**
  63. * 对外投资控股的企业数
  64. */
  65. @Excel(name = "对外投资控股的企业数",width = 8)
  66. private Integer externalInvestCount;
  67. /**
  68. * 对外投资控股的行业
  69. */
  70. // @Excel(name = "对外投资控股的行业")
  71. // private String externalInvestIndustry;
  72. /**
  73. * 对外投资控股的企业名称
  74. */
  75. @Excel(name = "对外投资控股的企业名称")
  76. private String externalInvestName;
  77. /**
  78. * 对外投资控股的企业编号
  79. */
  80. // @Excel(name = "对外投资控股的企业编号")
  81. // private String externalInvestId;
  82. /**
  83. * 对外投资控股的行业名称
  84. */
  85. @Excel(name = "对外投资控股的行业名称")
  86. private String externalInvestIndustryName;
  87. @Excel(name = "所属部门")
  88. private String depName;
  89. @Excel(name = "修改时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
  90. private Date updateTime;
  91. private String publicContent;
  92. public String getContactMobile() {
  93. return contactMobile;
  94. }
  95. public void setContactMobile(String contactMobile) {
  96. this.contactMobile = contactMobile;
  97. }
  98. public String getPublicContent() {
  99. return publicContent;
  100. }
  101. public void setPublicContent(String publicContent) {
  102. this.publicContent = publicContent;
  103. }
  104. public Integer getSignBills() {
  105. return signBills;
  106. }
  107. public void setSignBills(Integer signBills) {
  108. this.signBills = signBills;
  109. }
  110. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  111. public Date getUpdateTime() {
  112. return updateTime;
  113. }
  114. public void setUpdateTime(Date updateTime) {
  115. this.updateTime = updateTime;
  116. }
  117. public String getId() {
  118. return id;
  119. }
  120. public void setId(String id) {
  121. this.id = id;
  122. }
  123. public String getNickname() {
  124. return nickname;
  125. }
  126. public void setNickname(String nickname) {
  127. this.nickname = nickname;
  128. }
  129. public String getProvince() {
  130. return province;
  131. }
  132. public void setProvince(String province) {
  133. this.province = province;
  134. }
  135. public String getCity() {
  136. return city;
  137. }
  138. public void setCity(String city) {
  139. this.city = city;
  140. }
  141. public String getArea() {
  142. return area;
  143. }
  144. public void setArea(String area) {
  145. this.area = area;
  146. }
  147. public Integer getShareType() {
  148. return shareType;
  149. }
  150. public void setShareType(Integer shareType) {
  151. this.shareType = shareType;
  152. }
  153. public Integer getChannelType() {
  154. return channelType;
  155. }
  156. public void setChannelType(Integer channelType) {
  157. this.channelType = channelType;
  158. }
  159. public Integer getEnterpriseCount() {
  160. return enterpriseCount;
  161. }
  162. public void setEnterpriseCount(Integer enterpriseCount) {
  163. this.enterpriseCount = enterpriseCount;
  164. }
  165. public String getContactName() {
  166. return contactName;
  167. }
  168. public void setContactName(String contactName) {
  169. this.contactName = contactName;
  170. }
  171. public String getAdminName() {
  172. return adminName;
  173. }
  174. public void setAdminName(String adminName) {
  175. this.adminName = adminName;
  176. }
  177. public String getChannelIndicators() {
  178. return channelIndicators;
  179. }
  180. public void setChannelIndicators(String channelIndicators) {
  181. this.channelIndicators = channelIndicators;
  182. }
  183. public String getInterviewIdeas() {
  184. return interviewIdeas;
  185. }
  186. public void setInterviewIdeas(String interviewIdeas) {
  187. this.interviewIdeas = interviewIdeas;
  188. }
  189. public String getIntendedProject() {
  190. return intendedProject;
  191. }
  192. public void setIntendedProject(String intendedProject) {
  193. this.intendedProject = intendedProject;
  194. }
  195. public String getInterviewDistribution() {
  196. return interviewDistribution;
  197. }
  198. public void setInterviewDistribution(String interviewDistribution) {
  199. this.interviewDistribution = interviewDistribution;
  200. }
  201. public String getDepName() {
  202. return depName;
  203. }
  204. public void setDepName(String depName) {
  205. this.depName = depName;
  206. }
  207. public String getIndustry() {
  208. return industry;
  209. }
  210. public void setIndustry(String industry) {
  211. this.industry = industry;
  212. }
  213. public String getBusinessScope() {
  214. return businessScope;
  215. }
  216. public void setBusinessScope(String businessScope) {
  217. this.businessScope = businessScope;
  218. }
  219. public String getFinancialData() {
  220. return financialData;
  221. }
  222. public void setFinancialData(String financialData) {
  223. this.financialData = financialData;
  224. }
  225. public String getEarlyCommunication() {
  226. return earlyCommunication;
  227. }
  228. public void setEarlyCommunication(String earlyCommunication) {
  229. this.earlyCommunication = earlyCommunication;
  230. }
  231. public Integer getPatentCount() {
  232. return patentCount;
  233. }
  234. public void setPatentCount(Integer patentCount) {
  235. this.patentCount = patentCount;
  236. }
  237. public Integer getInventionPatentCount() {
  238. return inventionPatentCount;
  239. }
  240. public void setInventionPatentCount(Integer inventionPatentCount) {
  241. this.inventionPatentCount = inventionPatentCount;
  242. }
  243. public Integer getUtilityModelCount() {
  244. return utilityModelCount;
  245. }
  246. public void setUtilityModelCount(Integer utilityModelCount) {
  247. this.utilityModelCount = utilityModelCount;
  248. }
  249. public Integer getAppearancePatentCount() {
  250. return appearancePatentCount;
  251. }
  252. public void setAppearancePatentCount(Integer appearancePatentCount) {
  253. this.appearancePatentCount = appearancePatentCount;
  254. }
  255. public Integer getSoftwareWorksCount() {
  256. return softwareWorksCount;
  257. }
  258. public void setSoftwareWorksCount(Integer softwareWorksCount) {
  259. this.softwareWorksCount = softwareWorksCount;
  260. }
  261. public Integer getOtherCount() {
  262. return otherCount;
  263. }
  264. public void setOtherCount(Integer otherCount) {
  265. this.otherCount = otherCount;
  266. }
  267. }