This commit is contained in:
dute7liang
2023-12-30 21:04:37 +08:00
parent 065cac5ae3
commit 6e56989d0f
15 changed files with 164 additions and 50 deletions

View File

@@ -11,7 +11,5 @@ public class AlbumAddReq {
private Long id;
@Schema(description = "url")
private String url;
@Schema(description = "排序")
private Integer orderBy;
// private boolean first;
}

View File

@@ -12,4 +12,6 @@ public class GiveGuardReq {
@Schema(description = "赠送数量")
private Long guardNum;
@Schema(description = "赠送价格")
private Long guardPrice;
}

View File

@@ -10,7 +10,7 @@ public class UserUpdateReq {
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
private Long userId;
@Schema(description = "城市")
private String city;
private Long city;
@Schema(description = "昵称")
private String nickname;
@Schema(description = "生日")