123
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package com.ruoyi.cai.dto.app.query.anchor;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateOpenStatusReq {
|
||||
@Schema(description = "是否视频接听")
|
||||
private Integer openVideoStatus;
|
||||
}
|
||||
@@ -0,0 +1,13 @@
|
||||
package com.ruoyi.cai.dto.app.query.anchor;
|
||||
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class UpdateOrderSwitchReq {
|
||||
/**
|
||||
* 是否隐藏接单次数 1隐藏 2不隐藏
|
||||
*/
|
||||
@Schema(description = "是否隐藏接单次数")
|
||||
private Integer orderSwitch;
|
||||
}
|
||||
@@ -73,6 +73,9 @@ public class CurrentUserInfoVo {
|
||||
*/
|
||||
@Schema(description = "开启视频接听 0-否 1-是")
|
||||
private Integer openVideoStatus;
|
||||
|
||||
@Schema(description = "是否隐藏接单次数 1隐藏 2不隐藏")
|
||||
private Integer orderSwitch;
|
||||
/**
|
||||
* 状态 0 可用 1 不可用
|
||||
*/
|
||||
|
||||
@@ -6,6 +6,7 @@ import com.ruoyi.cai.dto.app.vo.user.OnlineStatusVo;
|
||||
import io.swagger.v3.oas.annotations.media.Schema;
|
||||
import lombok.Data;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
@@ -30,6 +31,12 @@ public class UserInfoVo {
|
||||
@Schema(description = "城市ID")
|
||||
private Integer cityId;
|
||||
|
||||
@Schema(description = "年龄")
|
||||
private Long age;
|
||||
|
||||
@Schema(description = "评分")
|
||||
private BigDecimal giveScore;
|
||||
|
||||
/**
|
||||
* 价格,默认50彩币
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user