VisitRemarkVo.java 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. package com.caimei.modules.user.entity;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.thinkgem.jeesite.common.persistence.DataEntity;
  4. import java.util.Date;
  5. import java.util.List;
  6. public class VisitRemarkVo extends DataEntity<VisitRemarkVo> {
  7. /**
  8. * 潜在用户备注id
  9. */
  10. private Integer remarksId;
  11. /**
  12. * 咨询人id
  13. */
  14. private String questionManId;
  15. /**
  16. * 协销id
  17. */
  18. private Integer serviceProviderId;
  19. /**
  20. * 协销姓名
  21. */
  22. private String serviceName;
  23. /**
  24. * 同步机构名称
  25. */
  26. private String clubName;
  27. /**
  28. * 同步clubid
  29. */
  30. private String clubId;
  31. /**
  32. * 备注/关键词
  33. */
  34. private String remarks;
  35. /**
  36. * 添加时间
  37. */
  38. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  39. private Date addTime;
  40. /**
  41. * 咨询人名字
  42. */
  43. private String questionMan;
  44. /**
  45. * 同步时间
  46. */
  47. @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
  48. private Date concactTime;
  49. /**
  50. * 图片列表
  51. */
  52. private List<String> imageList;
  53. /**
  54. * 文件列表
  55. */
  56. private List<RemarksFileVo> fileList;
  57. /**
  58. * 是否同步 1已同步2未同步
  59. */
  60. private String concat;
  61. /**
  62. * cm_visitor_remarks协销列表
  63. */
  64. private List<Server> serverList;
  65. public String getClubName() {
  66. return clubName;
  67. }
  68. public void setClubName(String clubName) {
  69. this.clubName = clubName;
  70. }
  71. public String getServiceName() {
  72. return serviceName;
  73. }
  74. public void setServiceName(String serviceName) {
  75. this.serviceName = serviceName;
  76. }
  77. public List<Server> getServerList() {
  78. return serverList;
  79. }
  80. public void setServerList(List<Server> serverList) {
  81. this.serverList = serverList;
  82. }
  83. public String getConcat() {
  84. return concat;
  85. }
  86. public void setConcat(String concat) {
  87. this.concat = concat;
  88. }
  89. public Integer getRemarksId() {
  90. return remarksId;
  91. }
  92. public void setRemarksId(Integer remarksId) {
  93. this.remarksId = remarksId;
  94. }
  95. public String getQuestionManId() {
  96. return questionManId;
  97. }
  98. public void setQuestionManId(String questionManId) {
  99. this.questionManId = questionManId;
  100. }
  101. public Integer getServiceProviderId() {
  102. return serviceProviderId;
  103. }
  104. public void setServiceProviderId(Integer serviceProviderId) {
  105. this.serviceProviderId = serviceProviderId;
  106. }
  107. public String getClubId() {
  108. return clubId;
  109. }
  110. public void setClubId(String clubId) {
  111. this.clubId = clubId;
  112. }
  113. @Override
  114. public String getRemarks() {
  115. return remarks;
  116. }
  117. @Override
  118. public void setRemarks(String remarks) {
  119. this.remarks = remarks;
  120. }
  121. public Date getAddTime() {
  122. return addTime;
  123. }
  124. public void setAddTime(Date addTime) {
  125. this.addTime = addTime;
  126. }
  127. public String getQuestionMan() {
  128. return questionMan;
  129. }
  130. public void setQuestionMan(String questionMan) {
  131. this.questionMan = questionMan;
  132. }
  133. public Date getConcactTime() {
  134. return concactTime;
  135. }
  136. public void setConcactTime(Date concactTime) {
  137. this.concactTime = concactTime;
  138. }
  139. public List<String> getImageList() {
  140. return imageList;
  141. }
  142. public void setImageList(List<String> imageList) {
  143. this.imageList = imageList;
  144. }
  145. public List<RemarksFileVo> getFileList() {
  146. return fileList;
  147. }
  148. public void setFileList(List<RemarksFileVo> fileList) {
  149. this.fileList = fileList;
  150. }
  151. }