添加机构字段
This commit is contained in:
parent
1a5d595acf
commit
85edc7bd42
@ -25,6 +25,12 @@ public class UserProfileRespVO {
|
|||||||
@Schema(description = "用户邮箱", example = "yudao@iocoder.cn")
|
@Schema(description = "用户邮箱", example = "yudao@iocoder.cn")
|
||||||
private String email;
|
private String email;
|
||||||
|
|
||||||
|
@Schema(description = "机构ID", example = "1001")
|
||||||
|
private int orgid;
|
||||||
|
|
||||||
|
@Schema(description = "机构名称", example = "体检机构")
|
||||||
|
private String orgname;
|
||||||
|
|
||||||
@Schema(description = "手机号码", example = "15601691300")
|
@Schema(description = "手机号码", example = "15601691300")
|
||||||
private String mobile;
|
private String mobile;
|
||||||
|
|
||||||
|
|||||||
@ -47,6 +47,14 @@ public class AdminUserDO extends TenantBaseDO {
|
|||||||
* 用户昵称
|
* 用户昵称
|
||||||
*/
|
*/
|
||||||
private String nickname;
|
private String nickname;
|
||||||
|
/**
|
||||||
|
* 机构id
|
||||||
|
*/
|
||||||
|
private Integer orgid;
|
||||||
|
/**
|
||||||
|
* 机构名称
|
||||||
|
*/
|
||||||
|
private String orgname;
|
||||||
/**
|
/**
|
||||||
* 备注
|
* 备注
|
||||||
*/
|
*/
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user