feat(system): 在 AdminUserRespDTO 中添加 tenantId 字段
- 在 AdminUserRespDTO 类中添加 tenantId 字段,用于表示租户 ID - 该字段使用 @Schema 注解进行描述,包括 requiredMode 和 example 属性
This commit is contained in:
parent
f8fb95130b
commit
318eeae8e8
|
@ -31,4 +31,7 @@ public class AdminUserRespDTO implements VO {
|
|||
@Schema(description = "用户头像", requiredMode = Schema.RequiredMode.REQUIRED, example = "https://www.iocoder.cn/1.png")
|
||||
private String avatar;
|
||||
|
||||
@Schema(description = "租户id", requiredMode = Schema.RequiredMode.REQUIRED, example = "1024")
|
||||
private Long tenantId;
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue