This commit is contained in:
张良(004796)
2024-03-28 18:20:50 +08:00
parent e955c21991
commit c25e43359c
14 changed files with 180 additions and 29 deletions

View File

@@ -30,7 +30,9 @@ public class AnchorTopAdminVo extends AnchorTop {
* 性别
*/
private Integer gender;
private Integer age;
private Long age;
private Integer status;
private Integer onlineStatus;
// 1-生效 2-过期 3-待生效
private Integer topStatus;
}

View File

@@ -3,6 +3,8 @@ package com.ruoyi.cai.dto.app.query.index;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import java.util.List;
@Data
@Schema(description = "主播查询条件")
public class AnchorListQuery {
@@ -21,4 +23,6 @@ public class AnchorListQuery {
@Schema(hidden = true)
private Integer onlineStatus;
@Schema(hidden = true)
private List<Long> ignoreUserIds;
}

View File

@@ -17,7 +17,7 @@ public class AnchorListVo {
private Integer online;
@Schema(description = "用户ID")
private String userId;
private Long userId;
/**
* 头像
*/