|
|
@ -7,6 +7,7 @@ import com.epmet.dto.extract.form.ExtractIndexFormDTO; |
|
|
|
import com.epmet.service.evaluationindex.extract.CalCpcIndexService; |
|
|
|
import com.epmet.service.evaluationindex.extract.CalGridIndexService; |
|
|
|
import com.epmet.service.evaluationindex.extract.dataToIndex.IndexOriginExtractService; |
|
|
|
import com.epmet.service.evaluationindex.indexcoll.IndexCollStreetService; |
|
|
|
import com.epmet.service.stats.DimCustomerService; |
|
|
|
import com.epmet.util.DimIdGenerator; |
|
|
|
import com.google.common.util.concurrent.ThreadFactoryBuilder; |
|
|
@ -39,6 +40,8 @@ public class IndexOriginExtractServiceImpl implements IndexOriginExtractService |
|
|
|
private CalGridIndexService calGridIndexService; |
|
|
|
@Autowired |
|
|
|
private DimCustomerService dimCustomerService; |
|
|
|
@Autowired |
|
|
|
private IndexCollStreetService indexCollStreetService; |
|
|
|
|
|
|
|
/** |
|
|
|
* desc:从统计库对象抽取指标数据 |
|
|
@ -100,6 +103,11 @@ public class IndexOriginExtractServiceImpl implements IndexOriginExtractService |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("抽取【网格服务能力数据】发生异常,参数:" + JSON.toJSONString(param), e); |
|
|
|
} |
|
|
|
try{ |
|
|
|
indexCollStreetService.saveStreetAbility(customerId, monthId); |
|
|
|
}catch (Exception e){ |
|
|
|
log.error("抽取【街道治理能力-街道党建能力】发生异常,参数:" + JSON.toJSONString(param), e); |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|