rx
2023-08-31 a015fd8ec9ea1a0a03581ddf3646d5ea690ef1eb
phis-feign/src/main/java/com/hz/his/dto/consultation/ConsultRecordDto.java
@@ -2,6 +2,7 @@
import com.hz.his.dto.PageDto;
import java.util.Date;
import java.util.List;
import java.util.Map;
@@ -47,6 +48,8 @@
    private String facePlan;
    //满意度 0=不满意 1=一般 2=满意
    private Integer satisfie;
    //创建时间
    private Date createTime;
    //本次治疗项目 多个逗号分割
    private String treatProjectIds;
@@ -68,8 +71,34 @@
    //小程序搜索时 有个页面是需要传时间的
    private String startTime;
    private String endTime;
    //his助手 查询咨询记录按照创建人来查询
    private String employeeId;
    //搜索条件
    //用户名查找
    private String userName;
    //客户来源渠道分类
    private String channelsTypeId;
    //客户来源一级渠道
    private String channelId;
    //客户来源二级渠道
    private String channel2Id;
    //咨询师
    private String hisCorpUserId;
    //电网咨询师
    private String internetCorpUserId;
    //客服
    private String chatCorpUserId;
    //创建人
    private String createEmployeeId;
    //创建人部门
    private String createEmployeePartId;
    //关注活动
    private String focusActivityId;
    //到访类型
    private String recentVisitType;
    //到访状态
    private Integer recentVisitStatus;
    //是否成交
    private Integer isMakeADeal;
    public ConsultRecordDto() {
    }
@@ -284,11 +313,116 @@
        this.endTime = endTime;
    }
    public String getEmployeeId() {
        return employeeId;
    public Date getCreateTime() {
        return createTime;
    }
    public void setEmployeeId(String employeeId) {
        this.employeeId = employeeId;
    public void setCreateTime(Date createTime) {
        this.createTime = createTime;
    }
    public String getUserName() {
        return userName;
    }
    public void setUserName(String userName) {
        this.userName = userName;
    }
    public String getChannelsTypeId() {
        return channelsTypeId;
    }
    public void setChannelsTypeId(String channelsTypeId) {
        this.channelsTypeId = channelsTypeId;
    }
    public String getChannelId() {
        return channelId;
    }
    public void setChannelId(String channelId) {
        this.channelId = channelId;
    }
    public String getChannel2Id() {
        return channel2Id;
    }
    public void setChannel2Id(String channel2Id) {
        this.channel2Id = channel2Id;
    }
    public String getHisCorpUserId() {
        return hisCorpUserId;
    }
    public void setHisCorpUserId(String hisCorpUserId) {
        this.hisCorpUserId = hisCorpUserId;
    }
    public String getInternetCorpUserId() {
        return internetCorpUserId;
    }
    public void setInternetCorpUserId(String internetCorpUserId) {
        this.internetCorpUserId = internetCorpUserId;
    }
    public String getChatCorpUserId() {
        return chatCorpUserId;
    }
    public void setChatCorpUserId(String chatCorpUserId) {
        this.chatCorpUserId = chatCorpUserId;
    }
    public String getCreateEmployeeId() {
        return createEmployeeId;
    }
    public void setCreateEmployeeId(String createEmployeeId) {
        this.createEmployeeId = createEmployeeId;
    }
    public String getCreateEmployeePartId() {
        return createEmployeePartId;
    }
    public void setCreateEmployeePartId(String createEmployeePartId) {
        this.createEmployeePartId = createEmployeePartId;
    }
    public String getFocusActivityId() {
        return focusActivityId;
    }
    public void setFocusActivityId(String focusActivityId) {
        this.focusActivityId = focusActivityId;
    }
    public String getRecentVisitType() {
        return recentVisitType;
    }
    public void setRecentVisitType(String recentVisitType) {
        this.recentVisitType = recentVisitType;
    }
    public Integer getRecentVisitStatus() {
        return recentVisitStatus;
    }
    public void setRecentVisitStatus(Integer recentVisitStatus) {
        this.recentVisitStatus = recentVisitStatus;
    }
    public Integer getIsMakeADeal() {
        return isMakeADeal;
    }
    public void setIsMakeADeal(Integer isMakeADeal) {
        this.isMakeADeal = isMakeADeal;
    }
}