UserArchives.java 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. package com.goafanti.common.model;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import java.io.Serializable;
  4. import java.math.BigDecimal;
  5. import java.util.Date;
  6. /**
  7. * 客户档案表(UserArchives)实体类
  8. *
  9. * @author makejava
  10. * @since 2025-04-11 09:39:23
  11. */
  12. public class UserArchives implements Serializable {
  13. private static final long serialVersionUID = 907641518706679781L;
  14. private Integer id;
  15. private String uid;
  16. /**
  17. * 专利数
  18. */
  19. private Integer patentCount;
  20. /**
  21. * 发明专利数
  22. */
  23. private Integer inventionPatentCount;
  24. /**
  25. * 实用新型数
  26. */
  27. private Integer utilityModelCount;
  28. /**
  29. * 外观专利数
  30. */
  31. private Integer appearancePatentCount;
  32. /**
  33. * 软著数
  34. */
  35. private Integer softwareWorksCount;
  36. /**
  37. * 其他数
  38. */
  39. private Integer otherCount;
  40. /**
  41. * 财务数据
  42. */
  43. private String financialData;
  44. /**
  45. * 前期沟通-客户的难处
  46. */
  47. private String earlyCommunication;
  48. /**
  49. * 面谈思路
  50. */
  51. private String interviewIdeas;
  52. /**
  53. * 创建时间
  54. */
  55. private Date createTime;
  56. /**
  57. * 企业数
  58. */
  59. private Integer enterpriseCount;
  60. /**
  61. * 渠道考核指标
  62. */
  63. private String channelIndicators;
  64. /**
  65. * 我方主要面谈及分工
  66. */
  67. private String interviewDistribution;
  68. /**
  69. * 修改时间
  70. */
  71. private Date updateTime;
  72. /**
  73. * 获奖时间
  74. */
  75. private Date awardsTime;
  76. /**
  77. * 获奖状态 0=未参评,1=已参评,2=已获奖
  78. */
  79. private Integer awardsStatus;
  80. /**
  81. * 母/子公司数
  82. */
  83. private Integer companyCount;
  84. /**
  85. * 社保人数
  86. */
  87. private Integer socialSecurityCount;
  88. /**
  89. * 对外投资控股的企业数
  90. */
  91. private Integer externalInvestCount;
  92. /**
  93. * 对外投资控股的行业
  94. */
  95. private String externalInvestIndustry;
  96. /**
  97. * 对外投资控股的企业名称
  98. */
  99. private String externalInvestName;
  100. /**
  101. * 首次面谈时间
  102. */
  103. private Date firstInterviewDate;
  104. /**
  105. * 财务数据-营收(万元)
  106. */
  107. private BigDecimal financialRevenue;
  108. /**
  109. * 财务数据-税收(万元)
  110. */
  111. private BigDecimal financialTax;
  112. /**
  113. * 财务数据-资产(万元)
  114. */
  115. private BigDecimal financialProperty;
  116. /**
  117. * 财务数据-研发费用(万元)
  118. */
  119. private BigDecimal financialRd;
  120. public Integer getId() {
  121. return id;
  122. }
  123. public void setId(Integer id) {
  124. this.id = id;
  125. }
  126. public String getUid() {
  127. return uid;
  128. }
  129. public void setUid(String uid) {
  130. this.uid = uid;
  131. }
  132. public Integer getPatentCount() {
  133. return patentCount;
  134. }
  135. public void setPatentCount(Integer patentCount) {
  136. this.patentCount = patentCount;
  137. }
  138. public Integer getInventionPatentCount() {
  139. return inventionPatentCount;
  140. }
  141. public void setInventionPatentCount(Integer inventionPatentCount) {
  142. this.inventionPatentCount = inventionPatentCount;
  143. }
  144. public Integer getUtilityModelCount() {
  145. return utilityModelCount;
  146. }
  147. public void setUtilityModelCount(Integer utilityModelCount) {
  148. this.utilityModelCount = utilityModelCount;
  149. }
  150. public Integer getAppearancePatentCount() {
  151. return appearancePatentCount;
  152. }
  153. public void setAppearancePatentCount(Integer appearancePatentCount) {
  154. this.appearancePatentCount = appearancePatentCount;
  155. }
  156. public Integer getSoftwareWorksCount() {
  157. return softwareWorksCount;
  158. }
  159. public void setSoftwareWorksCount(Integer softwareWorksCount) {
  160. this.softwareWorksCount = softwareWorksCount;
  161. }
  162. public Integer getOtherCount() {
  163. return otherCount;
  164. }
  165. public void setOtherCount(Integer otherCount) {
  166. this.otherCount = otherCount;
  167. }
  168. public String getFinancialData() {
  169. return financialData;
  170. }
  171. public void setFinancialData(String financialData) {
  172. this.financialData = financialData;
  173. }
  174. public String getEarlyCommunication() {
  175. return earlyCommunication;
  176. }
  177. public void setEarlyCommunication(String earlyCommunication) {
  178. this.earlyCommunication = earlyCommunication;
  179. }
  180. public String getInterviewIdeas() {
  181. return interviewIdeas;
  182. }
  183. public void setInterviewIdeas(String interviewIdeas) {
  184. this.interviewIdeas = interviewIdeas;
  185. }
  186. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  187. public Date getCreateTime() {
  188. return createTime;
  189. }
  190. public void setCreateTime(Date createTime) {
  191. this.createTime = createTime;
  192. }
  193. public Integer getEnterpriseCount() {
  194. return enterpriseCount;
  195. }
  196. public void setEnterpriseCount(Integer enterpriseCount) {
  197. this.enterpriseCount = enterpriseCount;
  198. }
  199. public String getChannelIndicators() {
  200. return channelIndicators;
  201. }
  202. public void setChannelIndicators(String channelIndicators) {
  203. this.channelIndicators = channelIndicators;
  204. }
  205. public String getInterviewDistribution() {
  206. return interviewDistribution;
  207. }
  208. public void setInterviewDistribution(String interviewDistribution) {
  209. this.interviewDistribution = interviewDistribution;
  210. }
  211. public Date getUpdateTime() {
  212. return updateTime;
  213. }
  214. public void setUpdateTime(Date updateTime) {
  215. this.updateTime = updateTime;
  216. }
  217. public Date getAwardsTime() {
  218. return awardsTime;
  219. }
  220. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  221. public void setAwardsTime(Date awardsTime) {
  222. this.awardsTime = awardsTime;
  223. }
  224. public Integer getAwardsStatus() {
  225. return awardsStatus;
  226. }
  227. public void setAwardsStatus(Integer awardsStatus) {
  228. this.awardsStatus = awardsStatus;
  229. }
  230. public Integer getCompanyCount() {
  231. return companyCount;
  232. }
  233. public void setCompanyCount(Integer companyCount) {
  234. this.companyCount = companyCount;
  235. }
  236. public Integer getSocialSecurityCount() {
  237. return socialSecurityCount;
  238. }
  239. public void setSocialSecurityCount(Integer socialSecurityCount) {
  240. this.socialSecurityCount = socialSecurityCount;
  241. }
  242. public Integer getExternalInvestCount() {
  243. return externalInvestCount;
  244. }
  245. public void setExternalInvestCount(Integer externalInvestCount) {
  246. this.externalInvestCount = externalInvestCount;
  247. }
  248. public String getExternalInvestIndustry() {
  249. return externalInvestIndustry;
  250. }
  251. public void setExternalInvestIndustry(String externalInvestIndustry) {
  252. this.externalInvestIndustry = externalInvestIndustry;
  253. }
  254. public String getExternalInvestName() {
  255. return externalInvestName;
  256. }
  257. public void setExternalInvestName(String externalInvestName) {
  258. this.externalInvestName = externalInvestName;
  259. }
  260. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  261. public Date getFirstInterviewDate() {
  262. return firstInterviewDate;
  263. }
  264. public void setFirstInterviewDate(Date firstInterviewDate) {
  265. this.firstInterviewDate = firstInterviewDate;
  266. }
  267. public BigDecimal getFinancialRevenue() {
  268. return financialRevenue;
  269. }
  270. public void setFinancialRevenue(BigDecimal financialRevenue) {
  271. this.financialRevenue = financialRevenue;
  272. }
  273. public BigDecimal getFinancialTax() {
  274. return financialTax;
  275. }
  276. public void setFinancialTax(BigDecimal financialTax) {
  277. this.financialTax = financialTax;
  278. }
  279. public BigDecimal getFinancialProperty() {
  280. return financialProperty;
  281. }
  282. public void setFinancialProperty(BigDecimal financialProperty) {
  283. this.financialProperty = financialProperty;
  284. }
  285. public BigDecimal getFinancialRd() {
  286. return financialRd;
  287. }
  288. public void setFinancialRd(BigDecimal financialRd) {
  289. this.financialRd = financialRd;
  290. }
  291. }