123
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
package com.ruoyi.cai.dto.admin.vo;
|
||||
|
||||
import com.ruoyi.cai.domain.AnchorTop;
|
||||
import com.ruoyi.common.annotation.Sensitive;
|
||||
import com.ruoyi.common.enums.SensitiveStrategy;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class AnchorTopAdminVo extends AnchorTop {
|
||||
/**
|
||||
* 用户号/ID号
|
||||
*/
|
||||
private String usercode;
|
||||
/**
|
||||
* 昵称
|
||||
*/
|
||||
private String nickname;
|
||||
|
||||
/**
|
||||
* 手机号
|
||||
*/
|
||||
@Sensitive(strategy = SensitiveStrategy.PHONE)
|
||||
private String mobile;
|
||||
|
||||
/**
|
||||
* 头像
|
||||
*/
|
||||
private String avatar;
|
||||
/**
|
||||
* 性别
|
||||
*/
|
||||
private Integer gender;
|
||||
private Integer age;
|
||||
private Integer status;
|
||||
private Integer onlineStatus;
|
||||
}
|
||||
@@ -18,4 +18,7 @@ public class AnchorListQuery {
|
||||
|
||||
@Schema(description = "城市(同城查询使用)")
|
||||
private Integer cityId;
|
||||
|
||||
@Schema(hidden = true)
|
||||
private Integer onlineStatus;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user