V13
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
package com.ruoyi.cai.dto.admin.vo;
|
||||
|
||||
import com.ruoyi.cai.domain.AnchorImCountDay;
|
||||
import com.ruoyi.common.annotation.Sensitive;
|
||||
import com.ruoyi.common.enums.SensitiveStrategy;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class AnchorImCountDayAdminVO extends AnchorImCountDay {
|
||||
/**
|
||||
* 用户号/ID号
|
||||
*/
|
||||
private String usercode;
|
||||
/**
|
||||
* 昵称
|
||||
*/
|
||||
private String nickname;
|
||||
|
||||
/**
|
||||
* 手机号
|
||||
*/
|
||||
@Sensitive(strategy = SensitiveStrategy.PHONE)
|
||||
private String mobile;
|
||||
|
||||
/**
|
||||
* 头像
|
||||
*/
|
||||
private String avatar;
|
||||
/**
|
||||
* 性别
|
||||
*/
|
||||
private Integer gender;
|
||||
private Integer age;
|
||||
private Boolean imSpeck;
|
||||
private Boolean enableIm;
|
||||
private Integer status;
|
||||
}
|
||||
@@ -33,4 +33,6 @@ public class UserCountAdminVo extends UserCount {
|
||||
private Integer age;
|
||||
private Integer isAnchor;
|
||||
private Integer status;
|
||||
private Boolean imSpeck;
|
||||
private Boolean enableIm;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user