添加机构字段

This commit is contained in:
Flow 2025-07-10 15:40:55 +08:00
parent 1a5d595acf
commit 85edc7bd42
2 changed files with 14 additions and 0 deletions

View File

@ -25,6 +25,12 @@ public class UserProfileRespVO {
@Schema(description = "用户邮箱", example = "yudao@iocoder.cn")
private String email;
@Schema(description = "机构ID", example = "1001")
private int orgid;
@Schema(description = "机构名称", example = "体检机构")
private String orgname;
@Schema(description = "手机号码", example = "15601691300")
private String mobile;

View File

@ -47,6 +47,14 @@ public class AdminUserDO extends TenantBaseDO {
* 用户昵称
*/
private String nickname;
/**
* 机构id
*/
private Integer orgid;
/**
* 机构名称
*/
private String orgname;
/**
* 备注
*/