增加用户姓名字段
This commit is contained in:
parent
0c4818bec2
commit
b92af8a266
@ -64,4 +64,7 @@ public class DoctornoticePageReqVO extends PageParam {
|
||||
@Schema(description = "是否删除(0:未删除,1:已删除)")
|
||||
private Integer isdeleted;
|
||||
|
||||
@Schema(description = "用户姓名")
|
||||
private String username;
|
||||
|
||||
}
|
||||
@ -76,4 +76,8 @@ public class DoctornoticeRespVO {
|
||||
@ExcelProperty("是否删除(0:未删除,1:已删除)")
|
||||
private Integer isdeleted;
|
||||
|
||||
@Schema(description = "用户姓名")
|
||||
@ExcelProperty("用户姓名")
|
||||
private String username;
|
||||
|
||||
}
|
||||
@ -68,4 +68,7 @@ public class DoctornoticeSaveReqVO {
|
||||
@Schema(description = "是否删除(0:未删除,1:已删除)")
|
||||
private Integer isdeleted;
|
||||
|
||||
@Schema(description = "用户姓名")
|
||||
private String username;
|
||||
|
||||
}
|
||||
@ -104,5 +104,9 @@ public class DoctornoticeDO extends BaseDO {
|
||||
*/
|
||||
@TableField("isdeleted")
|
||||
private Integer isdeleted;
|
||||
|
||||
/**
|
||||
* 用户姓名
|
||||
*/
|
||||
@TableField("username")
|
||||
private String username;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user