添加功能
This commit is contained in:
@@ -0,0 +1,101 @@
|
||||
package com.ruoyi.cms.controller;
|
||||
|
||||
import com.ruoyi.cms.domain.dto.QueryParamDto;
|
||||
import com.ruoyi.cms.service.AnalysisKeyGroupServiceSituationService;
|
||||
import com.ruoyi.common.core.domain.AjaxResult;
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 重点人群跟踪服务情况分析
|
||||
*
|
||||
* @author 马宝龙
|
||||
* @date 2026/6/26
|
||||
*/
|
||||
@RestController
|
||||
@RequestMapping("/analysis/keyGroupServiceSituation")
|
||||
@RequiredArgsConstructor
|
||||
public class AnalysisKeyGroupServiceSituationController {
|
||||
|
||||
private final AnalysisKeyGroupServiceSituationService analysisKeyGroupServiceSituationService;
|
||||
|
||||
/**
|
||||
* 数据总览
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 数据总览
|
||||
*/
|
||||
@PostMapping("/overview")
|
||||
public AjaxResult overview(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.overview(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 服务覆盖范围
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/serviceCoverage")
|
||||
public AjaxResult serviceCoverage(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.serviceCoverage(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 帮扶服务类型分析
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/helpServiceType")
|
||||
public AjaxResult helpServiceType(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.helpServiceType(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 帮扶成效评估
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/helpResultScore")
|
||||
public AjaxResult helpResultScore(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.helpResultScore(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 不同重点人群差异化分析
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/keyGroupDifferentiation")
|
||||
public AjaxResult keyGroupDifferentiation(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.keyGroupDifferentiation(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 帮扶过程与满意度
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/helpProcessSatisfaction")
|
||||
public AjaxResult helpProcessSatisfaction(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.helpProcessSatisfaction(dto));
|
||||
}
|
||||
|
||||
/**
|
||||
* 问题与建议
|
||||
*
|
||||
* @param dto 查询参数
|
||||
* @return 结果列表
|
||||
*/
|
||||
@PostMapping("/questionAndSuggestion")
|
||||
public AjaxResult questionAndSuggestion(@RequestBody QueryParamDto dto) {
|
||||
return AjaxResult.success(analysisKeyGroupServiceSituationService.questionAndSuggestion(dto));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user