用户新增返修审核权限
This commit is contained in:
parent
75d5c14fa3
commit
9c6906acf0
yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system
controller/admin/user/vo/user
dal/dataobject/user
@ -43,4 +43,5 @@ public class UserPageReqVO extends PageParam {
|
||||
private String isimageexamine;
|
||||
private String doctorID;
|
||||
private String doctorname;
|
||||
private String isrepairexamine;
|
||||
}
|
||||
|
@ -79,4 +79,6 @@ public class UserRespVO{
|
||||
|
||||
private String doctorID;
|
||||
private String doctorname;
|
||||
|
||||
private String isrepairexamine;
|
||||
}
|
||||
|
@ -78,6 +78,8 @@ public class UserSaveReqVO {
|
||||
private String doctorID;
|
||||
|
||||
private String doctorname;
|
||||
|
||||
private String isrepairexamine;
|
||||
// ========== 仅【创建】时,需要传递的字段 ==========
|
||||
|
||||
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456")
|
||||
|
@ -30,4 +30,6 @@ public class UserSimpleRespVO {
|
||||
private String doctorID;
|
||||
|
||||
private String doctorname;
|
||||
|
||||
private String isrepairexamine;
|
||||
}
|
||||
|
@ -122,4 +122,9 @@ public class AdminUserDO extends TenantBaseDO {
|
||||
@TableField("doctorname")
|
||||
private String doctorname;
|
||||
|
||||
/**
|
||||
* 是否有返修审核权限
|
||||
*/
|
||||
@TableField("isrepairexamine")
|
||||
private String isrepairexamine;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user