This commit is contained in:
777
2025-09-25 01:20:29 +08:00
parent 633b5fd187
commit afd018f79f
11 changed files with 77 additions and 14 deletions

View File

@@ -14,16 +14,20 @@ public class AnchorListQuery {
* 1-活跃查询
* 2-新人查询
* 3-同城查询
* 4-时长
* 5-魅力
* 6-附近
*/
@Schema(description = "类型 0-默认 1-活跃 2-新人 3-同城")
@Schema(description = "类型 0-默认 1-活跃 2-新人 3-同城 4-时长 5-魅力 6-附近")
private Integer type;
@Schema(hidden = true, description = "是否开启视频接听")
private Integer openVideoStatus;
@Schema(description = "金币搜索")
private Integer price;
@Schema(description = "城市(同城查询使用)")
private Integer cityId;
@Schema(hidden = true, description = "是否开启视频接听")
private Integer openVideoStatus;
@Schema(hidden = true)
private Integer onlineStatus;
@Schema(hidden = true)

View File

@@ -16,6 +16,11 @@ public class AnchorListVo {
@Schema(description = "在线状态 0=离线,1=在线")
private Integer online;
/**
* 服务时长(分钟)
*/
private Integer serviceTime;
@Schema(description = "用户ID")
private Long userId;
/**

View File

@@ -15,4 +15,6 @@ public class AppHomeConfig {
private String servId = "4";
@Schema(description = "首页弹窗内容")
private String homeDialogText;
@Schema(description = "土豆客服账号")
private String tdKf;
}