|
@@ -33,8 +33,10 @@ public class StatisticalController {
|
33
|
33
|
* @return
|
34
|
34
|
*/
|
35
|
35
|
@GetMapping(value = "/admin/selectActiveUserCount")
|
36
|
|
- public ResponseBean selectActiveUserCount(@RequestParam String dateType) {
|
37
|
|
- return iStatisticalService.selectActiveUserCount(dateType);
|
|
36
|
+ public ResponseBean selectActiveUserCount(@RequestParam String dateType,
|
|
37
|
+ @RequestParam(value = "startDate", required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDate startDate,
|
|
38
|
+ @RequestParam(value = "endDate", required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDate endDate) {
|
|
39
|
+ return iStatisticalService.selectActiveUserCount(dateType, startDate,endDate);
|
38
|
40
|
}
|
39
|
41
|
|
40
|
42
|
/**
|