UserArchives.java 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. package com.goafanti.common.model;
  2. import java.io.Serializable;
  3. import java.util.Date;
  4. /**
  5. * 客户档案表(UserArchives)实体类
  6. *
  7. * @author makejava
  8. * @since 2024-07-12 11:52:01
  9. */
  10. public class UserArchives implements Serializable {
  11. private static final long serialVersionUID = -77412612272854895L;
  12. private Integer id;
  13. private Integer uid;
  14. /**
  15. * 专利数
  16. */
  17. private Integer patentCount;
  18. /**
  19. * 发明专利数
  20. */
  21. private Integer inventionPatentCount;
  22. /**
  23. * 实用新型数
  24. */
  25. private Integer utilityModelCount;
  26. /**
  27. * 外观专利数
  28. */
  29. private Integer appearancePatentCount;
  30. /**
  31. * 软著数
  32. */
  33. private Integer softwareWorksCount;
  34. /**
  35. * 其他数
  36. */
  37. private Integer other;
  38. /**
  39. * 财务数据
  40. */
  41. private String financialData;
  42. /**
  43. * 前期沟通
  44. */
  45. private String earlyCommunication;
  46. /**
  47. * 面谈思路
  48. */
  49. private String interviewIdeas;
  50. /**
  51. * 创建时间
  52. */
  53. private Date createTime;
  54. public Integer getId() {
  55. return id;
  56. }
  57. public void setId(Integer id) {
  58. this.id = id;
  59. }
  60. public Integer getUid() {
  61. return uid;
  62. }
  63. public void setUid(Integer uid) {
  64. this.uid = uid;
  65. }
  66. public Integer getPatentCount() {
  67. return patentCount;
  68. }
  69. public void setPatentCount(Integer patentCount) {
  70. this.patentCount = patentCount;
  71. }
  72. public Integer getInventionPatentCount() {
  73. return inventionPatentCount;
  74. }
  75. public void setInventionPatentCount(Integer inventionPatentCount) {
  76. this.inventionPatentCount = inventionPatentCount;
  77. }
  78. public Integer getUtilityModelCount() {
  79. return utilityModelCount;
  80. }
  81. public void setUtilityModelCount(Integer utilityModelCount) {
  82. this.utilityModelCount = utilityModelCount;
  83. }
  84. public Integer getAppearancePatentCount() {
  85. return appearancePatentCount;
  86. }
  87. public void setAppearancePatentCount(Integer appearancePatentCount) {
  88. this.appearancePatentCount = appearancePatentCount;
  89. }
  90. public Integer getSoftwareWorksCount() {
  91. return softwareWorksCount;
  92. }
  93. public void setSoftwareWorksCount(Integer softwareWorksCount) {
  94. this.softwareWorksCount = softwareWorksCount;
  95. }
  96. public Integer getOther() {
  97. return other;
  98. }
  99. public void setOther(Integer other) {
  100. this.other = other;
  101. }
  102. public String getFinancialData() {
  103. return financialData;
  104. }
  105. public void setFinancialData(String financialData) {
  106. this.financialData = financialData;
  107. }
  108. public String getEarlyCommunication() {
  109. return earlyCommunication;
  110. }
  111. public void setEarlyCommunication(String earlyCommunication) {
  112. this.earlyCommunication = earlyCommunication;
  113. }
  114. public String getInterviewIdeas() {
  115. return interviewIdeas;
  116. }
  117. public void setInterviewIdeas(String interviewIdeas) {
  118. this.interviewIdeas = interviewIdeas;
  119. }
  120. public Date getCreateTime() {
  121. return createTime;
  122. }
  123. public void setCreateTime(Date createTime) {
  124. this.createTime = createTime;
  125. }
  126. }