|
@ -36,6 +36,7 @@ import com.epmet.service.evaluationindex.extract.dataToIndex.IndexCollCommunityS |
|
|
import com.epmet.service.evaluationindex.extract.dataToIndex.IndexCollStreetService; |
|
|
import com.epmet.service.evaluationindex.extract.dataToIndex.IndexCollStreetService; |
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginProjectLogDailyService; |
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginProjectLogDailyService; |
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginTopicMainDailyService; |
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginTopicMainDailyService; |
|
|
|
|
|
import com.epmet.service.evaluationindex.extract.todata.GroupExtractService; |
|
|
import com.epmet.service.evaluationindex.extract.toscreen.*; |
|
|
import com.epmet.service.evaluationindex.extract.toscreen.*; |
|
|
import com.epmet.service.evaluationindex.indexcal.*; |
|
|
import com.epmet.service.evaluationindex.indexcal.*; |
|
|
import com.epmet.service.stats.DimAgencyService; |
|
|
import com.epmet.service.stats.DimAgencyService; |
|
@ -106,6 +107,8 @@ public class DemoController { |
|
|
@Autowired |
|
|
@Autowired |
|
|
private GovernRankDataExtractService governRankDataExtractService; |
|
|
private GovernRankDataExtractService governRankDataExtractService; |
|
|
@Autowired |
|
|
@Autowired |
|
|
|
|
|
private GroupExtractService groupExtractService; |
|
|
|
|
|
@Autowired |
|
|
private OrgRankExtractService orgRankExtractService; |
|
|
private OrgRankExtractService orgRankExtractService; |
|
|
|
|
|
|
|
|
@GetMapping("testAlarm") |
|
|
@GetMapping("testAlarm") |
|
@ -708,5 +711,12 @@ public class DemoController { |
|
|
orgRankExtractService.extractStreetData(formDTO.getCustomerId(), formDTO.getDateId()); |
|
|
orgRankExtractService.extractStreetData(formDTO.getCustomerId(), formDTO.getDateId()); |
|
|
return new Result(); |
|
|
return new Result(); |
|
|
} |
|
|
} |
|
|
|
|
|
@PostMapping("extractgroup") |
|
|
|
|
|
public Result extractGroup(@RequestBody ExtractOriginFormDTO param){ |
|
|
|
|
|
|
|
|
|
|
|
groupExtractService.extractGroupData(param); |
|
|
|
|
|
return new Result(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|