全局替换小助手字样

This commit is contained in:
feng
2025-12-10 15:55:53 +08:00
parent 569e23322f
commit 9d6c2f2a14
33 changed files with 166 additions and 130 deletions
@@ -27,7 +27,7 @@ public class SessionFilter extends PageInfo<ConSession> {
@Schema(description = "咨询方式 1图文聊天2音视频3电话4应急")
private String contentType;
@Schema(description = "咨询类型 1员工咨询专家2员工咨询小助手3专家咨询小助手")
@Schema(description = "咨询类型 1员工咨询专家2员工咨询全科医生3专家咨询全科医生")
@NotBlank(message = "未知的查询类型")
private String sessionType;
@@ -8,7 +8,7 @@ import lombok.Data;
@Data
public class ConHelperDTO extends ConPage {
@Schema(title = "小助手姓名")
@Schema(title = "全科医生姓名")
private String userName;
@Schema(title = "状态")
@@ -40,7 +40,7 @@ public class ConSessionDTO extends ConPage {
@Schema(title = "咨询结束日期")
private String endDate;
@Schema(title = "菜单type(1为员工咨询专家 2用户咨询小助手 3专家咨询小助手)")
@Schema(title = "菜单type(1为员工咨询专家 2用户咨询全科医生 3专家咨询全科医生)")
private String sessionType;
@Schema(title = "二级单位id")
@@ -136,10 +136,10 @@ public class ConHelper extends ConPage implements Serializable {
@Schema(title = "联系地址")
private String address;
/**
* 小助手编号
* 全科医生编号
*/
@Excel(name = "小助手编号", width = 15)
@Schema(title = "小助手编号")
@Excel(name = "全科医生编号", width = 15)
@Schema(title = "全科医生编号")
private String helperId;
/**
* 是否接受咨询1接受咨询2拒绝咨询
@@ -56,8 +56,8 @@ public class ConSession extends ConPage implements Serializable {
/**
* 接受者id
*/
@Excel(name = "接受者id(小助手id)", width = 15)
@Schema(title = "接受者id(小助手id)")
@Excel(name = "接受者id(全科医生id)", width = 15)
@Schema(title = "接受者id(全科医生id)")
private String toAccount;
/**
* 会话结束时间
@@ -82,10 +82,10 @@ public class ConSession extends ConPage implements Serializable {
@Schema(title = "预约时间")
private Date reservationTime;
/**
* 1专家2小助手
* 1专家2全科医生
*/
@Excel(name = "1员工咨询专家2员工咨询小助手3专家咨询小助手", width = 15)
@Schema(title = "1员工咨询专家2员工咨询小助手3专家咨询小助手")
@Excel(name = "1员工咨询专家2员工咨询全科医生3专家咨询全科医生", width = 15)
@Schema(title = "1员工咨询专家2员工咨询全科医生3专家咨询全科医生")
@Dict(dicCode = "con_type")
private String sessionType;
/**
@@ -103,8 +103,8 @@ public class ConSession extends ConPage implements Serializable {
/**
* 接受者姓名
*/
@Excel(name = "接受者姓名(小助手姓名)", width = 15)
@Schema(title = "接受者姓名(小助手姓名)")
@Excel(name = "接受者姓名(全科医生姓名)", width = 15)
@Schema(title = "接受者姓名(全科医生姓名)")
private String toName;
/**
* im聊天信息id
@@ -39,9 +39,9 @@ public class UserToHelpExportVO {
private String userDeptName;
/**
* 小助手姓名
* 全科医生姓名
*/
@Excel(name = "小助手", width = 15,orderNum = "6")
@Excel(name = "全科医生", width = 15,orderNum = "6")
private String doctorName;
/**
@@ -8,14 +8,14 @@ import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Schema(title = "小助手信息小助手对象")
@Schema(title = "全科医生信息对象")
@Data
public class ConHelperHelperVO {
@Schema(title = "小助手id")
@Schema(title = "全科医生id")
private String id;
@Schema(title = "小助手姓名")
@Schema(title = "全科医生姓名")
private String helperName;
@Schema(title = "部门id")
@@ -69,7 +69,7 @@ public class ConHelperHelperVO {
@Schema(title = "是否接受咨询1接受咨询2拒绝咨询")
private String flag;
@Schema(title = "小助手编号")
@Schema(title = "全科医生编号")
private String helperId;
@Schema(title = "参加工作时间")
@@ -10,7 +10,7 @@ import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Schema(title = "小助手信息用户对象")
@Schema(title = "全科医生信息用户对象")
@Data
public class ConHelperUserVO {
@@ -12,9 +12,9 @@ public class ConHelperVO {
@Schema(title = "id")
private String id;
@Schema(title = "小助手姓名")
@Schema(title = "全科医生姓名")
private String userName;
@Schema(title = "小助手账号")
@Schema(title = "全科医生账号")
private String userAccount;
@Schema(title = "头像")
@@ -70,12 +70,12 @@ public class ConSessionHelperVO {
@Schema(title = "历史咨询专用")
private String name;
@Schema(title = "小助手id")
@Schema(title = "全科医生id")
private String helperId;
@Schema(title = "小助手姓名")
@Schema(title = "全科医生姓名")
private String helperName;
@Schema(title = "1员工咨询专家2员工咨询小助手3专家咨询小助手")
@Schema(title = "1员工咨询专家2员工咨询全科医生3专家咨询全科医生")
private String sessionType;
}