用户新增返修审核权限
Some checks are pending
Java CI with Maven / build (11) (push) Waiting to run
Java CI with Maven / build (17) (push) Waiting to run
Java CI with Maven / build (8) (push) Waiting to run
yudao-ui-admin CI / build (14.x) (push) Waiting to run
yudao-ui-admin CI / build (16.x) (push) Waiting to run

This commit is contained in:
lxd 2024-12-23 10:01:48 +08:00
parent 75d5c14fa3
commit 9c6906acf0
5 changed files with 12 additions and 0 deletions

View File

@ -43,4 +43,5 @@ public class UserPageReqVO extends PageParam {
private String isimageexamine;
private String doctorID;
private String doctorname;
private String isrepairexamine;
}

View File

@ -79,4 +79,6 @@ public class UserRespVO{
private String doctorID;
private String doctorname;
private String isrepairexamine;
}

View File

@ -78,6 +78,8 @@ public class UserSaveReqVO {
private String doctorID;
private String doctorname;
private String isrepairexamine;
// ========== 创建需要传递的字段 ==========
@Schema(description = "密码", requiredMode = Schema.RequiredMode.REQUIRED, example = "123456")

View File

@ -30,4 +30,6 @@ public class UserSimpleRespVO {
private String doctorID;
private String doctorname;
private String isrepairexamine;
}

View File

@ -122,4 +122,9 @@ public class AdminUserDO extends TenantBaseDO {
@TableField("doctorname")
private String doctorname;
/**
* 是否有返修审核权限
*/
@TableField("isrepairexamine")
private String isrepairexamine;
}