UserArchives.java 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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 14:27:30
  9. */
  10. public class UserArchives implements Serializable {
  11. private static final long serialVersionUID = 144323174694313886L;
  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 otherCount;
  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 patentCount() {
  67. if (patentCount == null) return 0;
  68. return patentCount;
  69. }
  70. public void setPatentCount(Integer patentCount) {
  71. this.patentCount = patentCount;
  72. }
  73. public Integer inventionPatentCount() {
  74. if (inventionPatentCount == null) return 0;
  75. return inventionPatentCount;
  76. }
  77. public void setInventionPatentCount(Integer inventionPatentCount) {
  78. this.inventionPatentCount = inventionPatentCount;
  79. }
  80. public Integer utilityModelCount() {
  81. if (utilityModelCount == null) return 0;
  82. return utilityModelCount;
  83. }
  84. public void setUtilityModelCount(Integer utilityModelCount) {
  85. this.utilityModelCount = utilityModelCount;
  86. }
  87. public Integer appearancePatentCount() {
  88. if (appearancePatentCount == null) return 0;
  89. return appearancePatentCount;
  90. }
  91. public void setAppearancePatentCount(Integer appearancePatentCount) {
  92. this.appearancePatentCount = appearancePatentCount;
  93. }
  94. public Integer softwareWorksCount() {
  95. if (softwareWorksCount == null) return 0;
  96. return softwareWorksCount;
  97. }
  98. public void setSoftwareWorksCount(Integer softwareWorksCount) {
  99. this.softwareWorksCount = softwareWorksCount;
  100. }
  101. public Integer otherCount() {
  102. if (otherCount == null) return 0;
  103. return otherCount;
  104. }
  105. public void setOtherCount(Integer otherCount) {
  106. this.otherCount = otherCount;
  107. }
  108. public String getFinancialData() {
  109. return financialData;
  110. }
  111. public void setFinancialData(String financialData) {
  112. this.financialData = financialData;
  113. }
  114. public String getEarlyCommunication() {
  115. return earlyCommunication;
  116. }
  117. public void setEarlyCommunication(String earlyCommunication) {
  118. this.earlyCommunication = earlyCommunication;
  119. }
  120. public String getInterviewIdeas() {
  121. return interviewIdeas;
  122. }
  123. public void setInterviewIdeas(String interviewIdeas) {
  124. this.interviewIdeas = interviewIdeas;
  125. }
  126. public Date getCreateTime() {
  127. return createTime;
  128. }
  129. public void setCreateTime(Date createTime) {
  130. this.createTime = createTime;
  131. }
  132. }