| | |
| | | @JsonInclude(JsonInclude.Include.NON_NULL) |
| | | private Integer isMakeADeal; |
| | | |
| | | //列表接口 小程序也使用 区分是否是从用户详情进去的 |
| | | private Integer isDetail; |
| | | |
| | | /**当前页数*/ |
| | | private Integer pageNum = 1; |
| | | /**当前页显示条数*/ |
| | | private Integer pageSize = 20; |
| | | /**关键字*/ |
| | | private String keyWord; |
| | | /**查询方式*/ |
| | | private String useType; |
| | | |
| | | // --------- 复诊补充新字段 |
| | | //客户疑虑 |
| | | private String doubt; |
| | | //异议 |
| | | private String dissent; |
| | | //预算 |
| | | private String budget; |
| | | // 感兴趣的活动 |
| | | private String interestedActivities; |
| | | //客人后续是否有安排事情和工作 |
| | | private String followUpWorks; |
| | | |
| | | |
| | | /***导医用户治疗屏操作时 查询咨询记录需要输入校验密码 用户ciq后四位**/ |
| | | private String checkPassword; |
| | | |
| | | public ConsultRecordDto() { |
| | | } |
| | |
| | | public void setMethodCodeName(String methodCodeName) { |
| | | this.methodCodeName = methodCodeName; |
| | | } |
| | | |
| | | public String getUseType() { |
| | | return useType; |
| | | } |
| | | |
| | | public void setUseType(String useType) { |
| | | this.useType = useType; |
| | | } |
| | | |
| | | public Integer getIsDetail() { |
| | | return isDetail; |
| | | } |
| | | |
| | | public void setIsDetail(Integer isDetail) { |
| | | this.isDetail = isDetail; |
| | | } |
| | | |
| | | public String getDoubt() { |
| | | return doubt; |
| | | } |
| | | |
| | | public void setDoubt(String doubt) { |
| | | this.doubt = doubt; |
| | | } |
| | | |
| | | public String getDissent() { |
| | | return dissent; |
| | | } |
| | | |
| | | public void setDissent(String dissent) { |
| | | this.dissent = dissent; |
| | | } |
| | | |
| | | public String getBudget() { |
| | | return budget; |
| | | } |
| | | |
| | | public void setBudget(String budget) { |
| | | this.budget = budget; |
| | | } |
| | | |
| | | public String getInterestedActivities() { |
| | | return interestedActivities; |
| | | } |
| | | |
| | | public void setInterestedActivities(String interestedActivities) { |
| | | this.interestedActivities = interestedActivities; |
| | | } |
| | | |
| | | public String getFollowUpWorks() { |
| | | return followUpWorks; |
| | | } |
| | | |
| | | public void setFollowUpWorks(String followUpWorks) { |
| | | this.followUpWorks = followUpWorks; |
| | | } |
| | | |
| | | public String getCheckPassword() { |
| | | return checkPassword; |
| | | } |
| | | |
| | | public void setCheckPassword(String checkPassword) { |
| | | this.checkPassword = checkPassword; |
| | | } |
| | | } |