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