mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-14 13:42:07 +08:00
管理端分析页用户总数接口相关属性赋值错误修复
This commit is contained in:
+2
-2
@@ -771,10 +771,10 @@ public class AdminUserServiceImpl implements AdminUserService {
|
|||||||
// 当日新增数
|
// 当日新增数
|
||||||
respVO.setUserTodayAdd(userMapper.selectUserCountAdd());
|
respVO.setUserTodayAdd(userMapper.selectUserCountAdd());
|
||||||
// 当日状态-停止数
|
// 当日状态-停止数
|
||||||
respVO.setUserTodayAdd(userMapper.selectUserCountDel());
|
respVO.setUserTodayDel(userMapper.selectUserCountDel());
|
||||||
// 当日沉寂数 (30天未登录)
|
// 当日沉寂数 (30天未登录)
|
||||||
Date date = DateUtil.offsetDay(new Date(), -30);
|
Date date = DateUtil.offsetDay(new Date(), -30);
|
||||||
respVO.setUserTodayAdd(userMapper.selectUserCountSilent(DateUtil.beginOfDay(date).toLocalDateTime()));
|
respVO.setUserTodaySilent(userMapper.selectUserCountSilent(DateUtil.beginOfDay(date).toLocalDateTime()));
|
||||||
|
|
||||||
return respVO;
|
return respVO;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user