|
|
@ -38,10 +38,7 @@ import com.epmet.entity.stats.DimMonthEntity; |
|
|
|
import com.epmet.service.StatsDemoService; |
|
|
|
import com.epmet.service.StatsPartyMemberVanguardService; |
|
|
|
import com.epmet.service.evaluationindex.extract.dataToIndex.*; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactGridGovernDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactGroupActDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginProjectCategoryDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginTopicMainDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.*; |
|
|
|
import com.epmet.service.evaluationindex.extract.toscreen.*; |
|
|
|
import com.epmet.service.evaluationindex.indexcal.*; |
|
|
|
import com.epmet.service.evaluationindex.screen.*; |
|
|
@ -120,6 +117,8 @@ public class DemoController { |
|
|
|
private FactGroupActDailyService factGroupActDailyService; |
|
|
|
@Autowired |
|
|
|
private FactGridGovernDailyService factGridGovernDailyService; |
|
|
|
@Autowired |
|
|
|
private FactAgencyGovernDailyService factAgencyGovernDailyService; |
|
|
|
|
|
|
|
@GetMapping("testAlarm") |
|
|
|
public void testAlarm() { |
|
|
@ -924,4 +923,10 @@ public class DemoController { |
|
|
|
factGridGovernDailyService.extractFactGridGovernDaily(fromDTO); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
@PostMapping("extractFactAgencyGovernDaily") |
|
|
|
public Result extractFactAgencyGovernDaily(@RequestBody ExtractFactGridGovernDailyFromDTO fromDTO){ |
|
|
|
factAgencyGovernDailyService.extractFactAgencyGovernDaily(fromDTO.getCustomerId(), fromDTO.getDateId()); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|