|
|
@ -35,6 +35,7 @@ import com.epmet.entity.stats.DimDateEntity; |
|
|
|
import com.epmet.entity.stats.DimMonthEntity; |
|
|
|
import com.epmet.service.StatsDemoService; |
|
|
|
import com.epmet.service.evaluationindex.extract.dataToIndex.*; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginProjectCategoryDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.todata.FactOriginTopicMainDailyService; |
|
|
|
import com.epmet.service.evaluationindex.extract.toscreen.*; |
|
|
|
import com.epmet.service.evaluationindex.indexcal.*; |
|
|
@ -106,6 +107,8 @@ public class DemoController { |
|
|
|
private ScreenProjectSettleService screenProjectSettleService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectCategoryGridDailyService projectCategoryGridDailyService; |
|
|
|
@Autowired |
|
|
|
private FactOriginProjectCategoryDailyService originProjectCategoryDailyService; |
|
|
|
|
|
|
|
@GetMapping("testAlarm") |
|
|
|
public void testAlarm() { |
|
|
@ -831,10 +834,29 @@ public class DemoController { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
* @param customerId |
|
|
|
* @author yinzuomei |
|
|
|
* @description 产品内部计算:网格内按分类统计项目数量 |
|
|
|
* @Date 2021/3/23 10:52 |
|
|
|
**/ |
|
|
|
@PostMapping("extractProjectCategoryData") |
|
|
|
public Result extractProjectCategoryData(@RequestParam("customerId") String customerId){ |
|
|
|
String dateId = LocalDate.now().minusDays(NumConstant.ONE).toString().replace("-", ""); |
|
|
|
projectCategoryGridDailyService.extractProjectCategoryData(customerId,dateId); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @return com.epmet.commons.tools.utils.Result |
|
|
|
* @author yinzuomei |
|
|
|
* @description 将epmet_gov_project库中的项目分类信息(project_category)同步到统计库epmet_data_statistical |
|
|
|
* @Date 2021/3/23 10:52 |
|
|
|
**/ |
|
|
|
@PostMapping("extractProjectCategory") |
|
|
|
public Result extractProjectCategory(@RequestBody ExtractOriginFormDTO formDTO){ |
|
|
|
originProjectCategoryDailyService.extractProjectCategory(formDTO); |
|
|
|
return new Result(); |
|
|
|
} |
|
|
|
} |
|
|
|