123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- package com.caimei.modules.user.entity;
- import com.fasterxml.jackson.annotation.JsonFormat;
- import com.thinkgem.jeesite.common.persistence.DataEntity;
- import java.util.Date;
- import java.util.List;
- public class VisitRemarkVo extends DataEntity<VisitRemarkVo> {
- /**
- * 潜在用户备注id
- */
- private Integer remarksId;
- /**
- * 咨询人id
- */
- private String questionManId;
- /**
- * 协销id
- */
- private Integer serviceProviderId;
- /**
- * 协销姓名
- */
- private String serviceName;
- /**
- * 同步机构名称
- */
- private String clubName;
- /**
- * 同步clubid
- */
- private String clubId;
- /**
- * 备注/关键词
- */
- private String remarks;
- /**
- * 添加时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date addTime;
- /**
- * 咨询人名字
- */
- private String questionMan;
- /**
- * 同步时间
- */
- @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
- private Date concactTime;
- /**
- * 图片列表
- */
- private List<String> imageList;
- /**
- * 文件列表
- */
- private List<RemarksFileVo> fileList;
- /**
- * 是否同步 1已同步2未同步
- */
- private String concat;
- /**
- * cm_visitor_remarks协销列表
- */
- private List<Server> serverList;
- public String getClubName() {
- return clubName;
- }
- public void setClubName(String clubName) {
- this.clubName = clubName;
- }
- public String getServiceName() {
- return serviceName;
- }
- public void setServiceName(String serviceName) {
- this.serviceName = serviceName;
- }
- public List<Server> getServerList() {
- return serverList;
- }
- public void setServerList(List<Server> serverList) {
- this.serverList = serverList;
- }
- public String getConcat() {
- return concat;
- }
- public void setConcat(String concat) {
- this.concat = concat;
- }
- public Integer getRemarksId() {
- return remarksId;
- }
- public void setRemarksId(Integer remarksId) {
- this.remarksId = remarksId;
- }
- public String getQuestionManId() {
- return questionManId;
- }
- public void setQuestionManId(String questionManId) {
- this.questionManId = questionManId;
- }
- public Integer getServiceProviderId() {
- return serviceProviderId;
- }
- public void setServiceProviderId(Integer serviceProviderId) {
- this.serviceProviderId = serviceProviderId;
- }
- public String getClubId() {
- return clubId;
- }
- public void setClubId(String clubId) {
- this.clubId = clubId;
- }
- @Override
- public String getRemarks() {
- return remarks;
- }
- @Override
- public void setRemarks(String remarks) {
- this.remarks = remarks;
- }
- public Date getAddTime() {
- return addTime;
- }
- public void setAddTime(Date addTime) {
- this.addTime = addTime;
- }
- public String getQuestionMan() {
- return questionMan;
- }
- public void setQuestionMan(String questionMan) {
- this.questionMan = questionMan;
- }
- public Date getConcactTime() {
- return concactTime;
- }
- public void setConcactTime(Date concactTime) {
- this.concactTime = concactTime;
- }
- public List<String> getImageList() {
- return imageList;
- }
- public void setImageList(List<String> imageList) {
- this.imageList = imageList;
- }
- public List<RemarksFileVo> getFileList() {
- return fileList;
- }
- public void setFileList(List<RemarksFileVo> fileList) {
- this.fileList = fileList;
- }
- }
|