OutSelectUserArchives.java 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  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 = "标准",width = 8,readConverterExp = "0=无,1=有")
  47. private Integer standard;
  48. @Excel(name = "财务数据")
  49. private String financialData;
  50. @Excel(name = "前期沟通")
  51. private String earlyCommunication;
  52. @Excel(name = "面谈思路及目的")
  53. private String interviewIdeas;
  54. /**
  55. * 母/子公司数
  56. */
  57. @Excel(name = "母/子公司数",width = 8)
  58. private Integer companyCount;
  59. /**
  60. * 社保人数
  61. */
  62. @Excel(name = "社保人数",width = 8)
  63. private Integer socialSecurityCount;
  64. /**
  65. * 对外投资控股的企业数
  66. */
  67. @Excel(name = "对外投资控股的企业数",width = 8)
  68. private Integer externalInvestCount;
  69. /**
  70. * 对外投资控股的行业
  71. */
  72. // @Excel(name = "对外投资控股的行业")
  73. // private String externalInvestIndustry;
  74. @Excel(name = "对外投资控股的行业")
  75. private String externalInvestIndustryName;
  76. /**
  77. * 对外投资控股的企业名称
  78. */
  79. @Excel(name = "对外投资控股的企业")
  80. private String externalInvestName;
  81. /**
  82. * 对外投资控股的企业编号
  83. */
  84. // @Excel(name = "对外投资控股的企业编号")
  85. // private String externalInvestId;
  86. /**
  87. * 对外投资控股的行业名称
  88. */
  89. @Excel(name = "所属部门")
  90. private String depName;
  91. @Excel(name = "修改时间",dateFormat = "yyyy-MM-dd HH:mm:ss")
  92. private Date updateTime;
  93. @Excel(name = "公出面谈信息")
  94. private String publicContent;
  95. public Integer getStandard() {
  96. return standard;
  97. }
  98. public void setStandard(Integer standard) {
  99. this.standard = standard;
  100. }
  101. public Integer getCompanyCount() {
  102. return companyCount;
  103. }
  104. public void setCompanyCount(Integer companyCount) {
  105. this.companyCount = companyCount;
  106. }
  107. public Integer getSocialSecurityCount() {
  108. return socialSecurityCount;
  109. }
  110. public void setSocialSecurityCount(Integer socialSecurityCount) {
  111. this.socialSecurityCount = socialSecurityCount;
  112. }
  113. public Integer getExternalInvestCount() {
  114. return externalInvestCount;
  115. }
  116. public void setExternalInvestCount(Integer externalInvestCount) {
  117. this.externalInvestCount = externalInvestCount;
  118. }
  119. public String getExternalInvestIndustryName() {
  120. return externalInvestIndustryName;
  121. }
  122. public void setExternalInvestIndustryName(String externalInvestIndustryName) {
  123. this.externalInvestIndustryName = externalInvestIndustryName;
  124. }
  125. public String getExternalInvestName() {
  126. return externalInvestName;
  127. }
  128. public void setExternalInvestName(String externalInvestName) {
  129. this.externalInvestName = externalInvestName;
  130. }
  131. public String getContactMobile() {
  132. return contactMobile;
  133. }
  134. public void setContactMobile(String contactMobile) {
  135. this.contactMobile = contactMobile;
  136. }
  137. public String getPublicContent() {
  138. return publicContent;
  139. }
  140. public void setPublicContent(String publicContent) {
  141. this.publicContent = publicContent;
  142. }
  143. public Integer getSignBills() {
  144. return signBills;
  145. }
  146. public void setSignBills(Integer signBills) {
  147. this.signBills = signBills;
  148. }
  149. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "GMT+8")
  150. public Date getUpdateTime() {
  151. return updateTime;
  152. }
  153. public void setUpdateTime(Date updateTime) {
  154. this.updateTime = updateTime;
  155. }
  156. public String getId() {
  157. return id;
  158. }
  159. public void setId(String id) {
  160. this.id = id;
  161. }
  162. public String getNickname() {
  163. return nickname;
  164. }
  165. public void setNickname(String nickname) {
  166. this.nickname = nickname;
  167. }
  168. public String getProvince() {
  169. return province;
  170. }
  171. public void setProvince(String province) {
  172. this.province = province;
  173. }
  174. public String getCity() {
  175. return city;
  176. }
  177. public void setCity(String city) {
  178. this.city = city;
  179. }
  180. public String getArea() {
  181. return area;
  182. }
  183. public void setArea(String area) {
  184. this.area = area;
  185. }
  186. public Integer getShareType() {
  187. return shareType;
  188. }
  189. public void setShareType(Integer shareType) {
  190. this.shareType = shareType;
  191. }
  192. public Integer getChannelType() {
  193. return channelType;
  194. }
  195. public void setChannelType(Integer channelType) {
  196. this.channelType = channelType;
  197. }
  198. public Integer getEnterpriseCount() {
  199. return enterpriseCount;
  200. }
  201. public void setEnterpriseCount(Integer enterpriseCount) {
  202. this.enterpriseCount = enterpriseCount;
  203. }
  204. public String getContactName() {
  205. return contactName;
  206. }
  207. public void setContactName(String contactName) {
  208. this.contactName = contactName;
  209. }
  210. public String getAdminName() {
  211. return adminName;
  212. }
  213. public void setAdminName(String adminName) {
  214. this.adminName = adminName;
  215. }
  216. public String getChannelIndicators() {
  217. return channelIndicators;
  218. }
  219. public void setChannelIndicators(String channelIndicators) {
  220. this.channelIndicators = channelIndicators;
  221. }
  222. public String getInterviewIdeas() {
  223. return interviewIdeas;
  224. }
  225. public void setInterviewIdeas(String interviewIdeas) {
  226. this.interviewIdeas = interviewIdeas;
  227. }
  228. public String getIntendedProject() {
  229. return intendedProject;
  230. }
  231. public void setIntendedProject(String intendedProject) {
  232. this.intendedProject = intendedProject;
  233. }
  234. public String getInterviewDistribution() {
  235. return interviewDistribution;
  236. }
  237. public void setInterviewDistribution(String interviewDistribution) {
  238. this.interviewDistribution = interviewDistribution;
  239. }
  240. public String getDepName() {
  241. return depName;
  242. }
  243. public void setDepName(String depName) {
  244. this.depName = depName;
  245. }
  246. public String getIndustry() {
  247. return industry;
  248. }
  249. public void setIndustry(String industry) {
  250. this.industry = industry;
  251. }
  252. public String getBusinessScope() {
  253. return businessScope;
  254. }
  255. public void setBusinessScope(String businessScope) {
  256. this.businessScope = businessScope;
  257. }
  258. public String getFinancialData() {
  259. return financialData;
  260. }
  261. public void setFinancialData(String financialData) {
  262. this.financialData = financialData;
  263. }
  264. public String getEarlyCommunication() {
  265. return earlyCommunication;
  266. }
  267. public void setEarlyCommunication(String earlyCommunication) {
  268. this.earlyCommunication = earlyCommunication;
  269. }
  270. public Integer getPatentCount() {
  271. return patentCount;
  272. }
  273. public void setPatentCount(Integer patentCount) {
  274. this.patentCount = patentCount;
  275. }
  276. public Integer getInventionPatentCount() {
  277. return inventionPatentCount;
  278. }
  279. public void setInventionPatentCount(Integer inventionPatentCount) {
  280. this.inventionPatentCount = inventionPatentCount;
  281. }
  282. public Integer getUtilityModelCount() {
  283. return utilityModelCount;
  284. }
  285. public void setUtilityModelCount(Integer utilityModelCount) {
  286. this.utilityModelCount = utilityModelCount;
  287. }
  288. public Integer getAppearancePatentCount() {
  289. return appearancePatentCount;
  290. }
  291. public void setAppearancePatentCount(Integer appearancePatentCount) {
  292. this.appearancePatentCount = appearancePatentCount;
  293. }
  294. public Integer getSoftwareWorksCount() {
  295. return softwareWorksCount;
  296. }
  297. public void setSoftwareWorksCount(Integer softwareWorksCount) {
  298. this.softwareWorksCount = softwareWorksCount;
  299. }
  300. public Integer getOtherCount() {
  301. return otherCount;
  302. }
  303. public void setOtherCount(Integer otherCount) {
  304. this.otherCount = otherCount;
  305. }
  306. }