Merge pull request #12075 from Lensual/fix-UserGridVO

fix(UserGridVO): fixed Schema enable & phone & phonePrefix
This commit is contained in:
maninhill 2024-09-08 08:34:23 +08:00 committed by GitHub
commit 27ac7a43c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -22,7 +22,11 @@ public class UserGridVO {
private List<UserGridRoleItem> roleItems;
@Schema(description = "邮箱")
private String email;
@Schema(description = "电话前缀")
private String phonePrefix;
@Schema(description = "电话")
private String phone;
@Schema(description = "状态")
private Boolean enable;
@Schema(description = "创建时间")
private Long createTime;