增加用户姓名字段

This commit is contained in:
Flow 2025-06-17 15:46:12 +08:00
parent 0c4818bec2
commit b92af8a266
4 changed files with 15 additions and 1 deletions

View File

@ -64,4 +64,7 @@ public class DoctornoticePageReqVO extends PageParam {
@Schema(description = "是否删除(0:未删除,1:已删除)")
private Integer isdeleted;
@Schema(description = "用户姓名")
private String username;
}

View File

@ -76,4 +76,8 @@ public class DoctornoticeRespVO {
@ExcelProperty("是否删除(0:未删除,1:已删除)")
private Integer isdeleted;
@Schema(description = "用户姓名")
@ExcelProperty("用户姓名")
private String username;
}

View File

@ -68,4 +68,7 @@ public class DoctornoticeSaveReqVO {
@Schema(description = "是否删除(0:未删除,1:已删除)")
private Integer isdeleted;
@Schema(description = "用户姓名")
private String username;
}

View File

@ -104,5 +104,9 @@ public class DoctornoticeDO extends BaseDO {
*/
@TableField("isdeleted")
private Integer isdeleted;
/**
* 用户姓名
*/
@TableField("username")
private String username;
}