This commit is contained in:
张良(004796)
2024-03-25 11:02:45 +08:00
parent 5cd14c47eb
commit 8792c0e1cf
12 changed files with 51 additions and 37 deletions

View File

@@ -10,8 +10,8 @@ import java.time.LocalDateTime;
public class UserUpdateReq {
@Schema(description = "用户ID",hidden = true)
private Long userId;
@Schema(description = "邀请人ID")
private Long inviteId;
@Schema(description = "邀请人用户编号")
private String inviteId;
@Schema(description = "城市")
private Integer cityId;
@Schema(description = "昵称")

View File

@@ -5,5 +5,5 @@ import lombok.Data;
@Data
public class InviteIgnoreData {
private Long userId;
private Long inviteId;
private String inviteId;
}