123
This commit is contained in:
@@ -5,7 +5,7 @@ import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AlbumAddReq {
|
||||
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "id")
|
||||
private Long id;
|
||||
|
||||
@@ -14,7 +14,7 @@ public class DynamicQuery {
|
||||
@Schema(description = "用户ID,可过滤指定的女神")
|
||||
private Long userId;
|
||||
|
||||
@Schema(description = "当前用户ID", accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "当前用户ID", hidden = true)
|
||||
private Long currentUserId;
|
||||
|
||||
@Schema(description = "城市")
|
||||
|
||||
@@ -8,6 +8,6 @@ import lombok.Data;
|
||||
public class DynamicStarReq {
|
||||
@Schema(description = "动态ID")
|
||||
private Long dynamicId;
|
||||
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.time.LocalDate;
|
||||
|
||||
@Data
|
||||
public class FinishUserUpdateReq {
|
||||
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "城市")
|
||||
@NotNull(message = "城市不能为空")
|
||||
|
||||
@@ -10,6 +10,6 @@ public class StarQuery {
|
||||
@Schema(description = "类型 1=查询我的关注 2=查询我的粉丝")
|
||||
private Integer type = 1;
|
||||
|
||||
@Schema(accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(hidden = true)
|
||||
private Long userId;
|
||||
}
|
||||
|
||||
@@ -8,7 +8,7 @@ import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
public class UserUpdateReq {
|
||||
@Schema(description = "用户ID",accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "用户ID",hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "邀请人ID")
|
||||
private Long inviteId;
|
||||
|
||||
@@ -11,7 +11,7 @@ public class WithdrawReq {
|
||||
*/
|
||||
@Schema(description = "提现配置ID")
|
||||
private Long withdrawSettingId;
|
||||
@Schema(description = "当前用户ID",accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(description = "当前用户ID",hidden = true)
|
||||
private Long userId;
|
||||
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import javax.validation.constraints.NotNull;
|
||||
@Data
|
||||
@Schema(description = "新增群达招呼")
|
||||
public class UserGreetAddReq {
|
||||
@Schema(accessMode = Schema.AccessMode.READ_ONLY)
|
||||
@Schema(hidden = true)
|
||||
private Long userId;
|
||||
@Schema(description = "内容")
|
||||
@NotEmpty(message = "打招呼内容不能为空")
|
||||
|
||||
Reference in New Issue
Block a user