This commit is contained in:
张良(004796)
2024-03-18 18:46:46 +08:00
parent 688ef1d649
commit a75e7b3257
11 changed files with 303 additions and 8 deletions

View File

@@ -0,0 +1,23 @@
package com.ruoyi.xq.dto.admin.unread;
import lombok.Data;
@Data
public class UnreadData {
/**
* 用户提现审核
*/
private Long userWithdrawCount;
/**
* 用户认证审核
*/
private Long userAuthCount;
/**
* 动态审核
*/
private Long dynamicCount;
/**
* 用户信息审核
*/
private Long userInfoCount;
}