Vue-next-admin:快速构建现代化Vue3后台管理系统的终极免费模板
2026/7/16 19:25:41
数据库
controller层
@GetMapping("/updateDataByDate")publicvoidupdateDataByDate(){IntegernewUserCount=userService.newUserCount();IntegeractiveUserCount=userService.activeUserCount();LocalDatenow=LocalDate.now().minusDays(1);userDailyStaticService.saveOrUpdateDada(now,newUserCount,activeUserCount);}