fhx
2024-04-24 0fdec9003ee06369547e306c3f15be2901da5cf4
phis-feign/src/main/java/com/hz/his/dto/consultation/ConsultRecordDto.java
@@ -17,7 +17,7 @@
    private String userId;
    //门店/诊所ID
    private String shopId;
    //咨询类型 0=标准(旧版) 1=初诊 2=复诊 3=复查 4=疗程内 5=再消费 6=沉睡客
    //咨询类型 0=标准(旧版) 1=初诊 2=复诊
    private Integer consultType;
    //满意度 0=不满意 1=一般 2=满意
    private Integer satisfie;
@@ -54,22 +54,24 @@
    //推荐项目 多个逗号分割
    private String recommendProjectIds;
    //上次治疗医生ID
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String lastTreatDoctorId;
    //上次治疗项目json字符串 ["项目ID","项目ID"]
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String lastTreatProjects;
    //咨询方式代码
    private String methodCode;
    //咨询方式名称
    private String methodCodeName;
    //------------- 修改传值
    private String id;
    //------------- 非初诊 复诊 详情返回
    //------------- 详情返回
    //治疗医生名称
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String faceDoctorName;
    //治疗医生名称
    private String treatDoctorName;
    //上次治疗医生名称
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String lastTreatDoctorName;
    //------------ 详情返回值补充
@@ -104,6 +106,10 @@
    //咨询师
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String hisCorpUserId;
    //用户顾问名称
    private String hisCorpUserName;
    //手机号
    private String tel;
    //电网咨询师
    @JsonInclude(JsonInclude.Include.NON_NULL)
    private String internetCorpUserId;
@@ -129,12 +135,33 @@
    @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() {
    }
@@ -307,6 +334,14 @@
        this.satisfie = satisfie;
    }
    public String getFaceDoctorName() {
        return faceDoctorName;
    }
    public void setFaceDoctorName(String faceDoctorName) {
        this.faceDoctorName = faceDoctorName;
    }
    public String getTreatDoctorName() {
        return treatDoctorName;
    }
@@ -378,6 +413,22 @@
    public void setHisCorpUserId(String hisCorpUserId) {
        this.hisCorpUserId = hisCorpUserId;
    }
    public String getHisCorpUserName() {
        return hisCorpUserName;
    }
    public void setHisCorpUserName(String hisCorpUserName) {
        this.hisCorpUserName = hisCorpUserName;
    }
    public String getTel() {
        return tel;
    }
    public void setTel(String tel) {
        this.tel = tel;
    }
    public String getInternetCorpUserId() {
@@ -507,4 +558,84 @@
    public void setKeyWord(String keyWord) {
        this.keyWord = keyWord;
    }
    public String getMethodCode() {
        return methodCode;
    }
    public void setMethodCode(String methodCode) {
        this.methodCode = methodCode;
    }
    public String getMethodCodeName() {
        return methodCodeName;
    }
    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;
    }
}