Compare commits

..

No commits in common. "0005e1da6b349e14a49b0c2ddae4b7bd04150b68" and "76e7619eac9a6414d15b2a884dfbe61cbe27eb6f" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -733,8 +733,8 @@ public class SysUserServiceImpl implements ISysUserService
@Override
public UserDataVo getUserData() {
return UserDataVo.builder()
.userCount(this.getUserCount())
.monthUserCount(this.getMonthUserCount())
.userCount(this.getMonthUserCount())
.monthUserCount(this.getUserCount())
.build();
}

View File

@ -182,7 +182,7 @@
</select>
<select id="getUserCount" resultType="java.lang.Integer">
select COALESCE(count(*), 0) from sys_user where del_flag = '0'
select COALESCE(count(*), 0) from sys_user
</select>
<select id="getMonthUserCount" resultType="java.lang.Integer">