This commit is contained in:
777
2025-08-19 21:48:18 +08:00
parent 10eea85347
commit 43b13d4da9
28 changed files with 436 additions and 183 deletions

View File

@@ -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;
}

View File

@@ -33,4 +33,6 @@ public class UserCountAdminVo extends UserCount {
private Integer age;
private Integer isAnchor;
private Integer status;
private Boolean imSpeck;
private Boolean enableIm;
}