|
@ -1,5 +1,6 @@ |
|
|
package com.epmet.controller; |
|
|
package com.epmet.controller; |
|
|
|
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.utils.Result; |
|
|
import com.epmet.dto.group.form.GroupStatsFormDTO; |
|
|
import com.epmet.dto.group.form.GroupStatsFormDTO; |
|
|
import com.epmet.service.StatsGroupService; |
|
|
import com.epmet.service.StatsGroupService; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
@ -30,8 +31,9 @@ public class StatsGroupController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("groupgriddaily") |
|
|
@PostMapping("groupgriddaily") |
|
|
public void groupGridDaily(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
public Result groupGridDaily(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
statsGroupService.groupGridDaily(formDTO); |
|
|
statsGroupService.groupGridDaily(formDTO); |
|
|
|
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -40,8 +42,9 @@ public class StatsGroupController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("groupagencydaily") |
|
|
@PostMapping("groupagencydaily") |
|
|
public void groupAgencyDaily(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
public Result groupAgencyDaily(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
statsGroupService.groupAgencyDaily(formDTO); |
|
|
statsGroupService.groupAgencyDaily(formDTO); |
|
|
|
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -50,8 +53,9 @@ public class StatsGroupController { |
|
|
* @author zxc |
|
|
* @author zxc |
|
|
*/ |
|
|
*/ |
|
|
@PostMapping("groupagencymonthly") |
|
|
@PostMapping("groupagencymonthly") |
|
|
public void groupAgencyMonthly(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
public Result groupAgencyMonthly(@RequestBody GroupStatsFormDTO formDTO){ |
|
|
statsGroupService.groupAgencyMonthly(formDTO); |
|
|
statsGroupService.groupAgencyMonthly(formDTO); |
|
|
|
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|