This commit is contained in:
77
2024-08-10 16:13:41 +08:00
parent 2a735161a2
commit eacfd189e8
11 changed files with 184 additions and 6 deletions

View File

@@ -0,0 +1,12 @@
package com.ruoyi.cai.dto.app.vo.anchor;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
@Data
public class AnchorStatusDTO {
private Long userId;
private Long anchorId;
@Schema(description = "0=离线 1=空闲/在线 2=忙碌中 3=勿扰")
private Integer anchorStatus;
}

View File

@@ -15,6 +15,8 @@ public class RankNodeLove {
private String nickname;
@Schema(description = "魅力值")
private Long value;
@Schema(description = "0=离线 1=空闲/在线 2=忙碌中 3=勿扰")
private Integer anchorStatus;
@Schema(description = "距离上一名差距")
private Long diffLastValue;
@Schema(description = "是否开启隐身模式")