|
|
@ -783,4 +783,16 @@ public class DemoController { |
|
|
|
screenProjectQuantityOrgMonthlyService.extractionProjectOrgMonthly(customerId,monthId); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@PostMapping("event-all") |
|
|
|
public Result screenProjectQuantityOrgMonthly(@RequestParam("customerId") String customerId, |
|
|
|
@RequestParam("dateId") String dateId, |
|
|
|
@RequestParam("monthId") String monthId) { |
|
|
|
screenProjectGridDailyService.extractionProjectGridDaily(customerId, dateId); |
|
|
|
screenProjectOrgDailyService.extractionProjectOrgDaily(customerId, dateId); |
|
|
|
screenProjectQuantityGridMonthlyService.extractionProjectGridMonthly(customerId, monthId); |
|
|
|
screenProjectQuantityOrgMonthlyService.extractionProjectOrgMonthly(customerId, monthId); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
} |
|
|
|