Merge pull request #510 from DevDengChao/fix/member-sex-type

修复 MemberUserBaseVO.sex 与 SexEnum.value 不一致的问题
This commit is contained in:
芋道源码 2024-05-07 22:23:41 +08:00 committed by GitHub
commit a8aead3049
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -38,7 +38,7 @@ public class MemberUserBaseVO {
private String name; private String name;
@Schema(description = "用户性别", example = "1") @Schema(description = "用户性别", example = "1")
private Byte sex; private Integer sex;
@Schema(description = "所在地编号", example = "4371") @Schema(description = "所在地编号", example = "4371")
private Long areaId; private Long areaId;