|
|
|
|
@ -24,6 +24,7 @@ import com.biutag.supervision.service.RpcApplyService;
|
|
|
|
|
import com.biutag.supervision.service.SupDepartService; |
|
|
|
|
import com.biutag.supervision.service.SupDictDataService; |
|
|
|
|
import com.biutag.supervision.util.CompletableUtils.CompletableFutureUtil; |
|
|
|
|
import io.swagger.v3.core.util.Json; |
|
|
|
|
import io.swagger.v3.oas.annotations.tags.Tag; |
|
|
|
|
import lombok.RequiredArgsConstructor; |
|
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
|
@ -90,11 +91,17 @@ public class SubOneRightsController {
|
|
|
|
|
List<BarItem> pcsList = rpcApplyMapper.selectSubPcsProtectRightsBarList(beginTime, endTime, departId,10); |
|
|
|
|
// 维权案件情况 - 大队
|
|
|
|
|
List<BarItem> dbList = rpcApplyMapper.selectSubDdProtectRightsBarList(beginTime, endTime, departId,10); |
|
|
|
|
|
|
|
|
|
//抚慰金额-派出所
|
|
|
|
|
List<BarItem> fxsjComfortMoneyRank = rpcApplyMapper.selectSubProtectRightsBarList(beginTime, endTime, departId,10); |
|
|
|
|
//抚慰金额-大队
|
|
|
|
|
List<BarItem> jsdwComfortMoneyRank=rpcApplyMapper.selectSubComfortMoneyBarList(beginTime, endTime, departId,10); |
|
|
|
|
JSONObject data = new JSONObject() |
|
|
|
|
.fluentPut("comfortOverview", comfortOverview) |
|
|
|
|
.fluentPut("fxsjRightsRankList",pcsList) |
|
|
|
|
.fluentPut("jsdwRightsRankList",dbList); |
|
|
|
|
.fluentPut("jsdwRightsRankList",dbList) |
|
|
|
|
.fluentPut("fxsjComfortMoneyRank",fxsjComfortMoneyRank) |
|
|
|
|
.fluentPut("jsdwComfortMoneyRank",jsdwComfortMoneyRank); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Result.success(data); |
|
|
|
|
} |
|
|
|
|
@ -205,6 +212,10 @@ public class SubOneRightsController {
|
|
|
|
|
return Result.success(data); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// endregion
|
|
|
|
|
//打处情况
|
|
|
|
|
@GetMapping("getPunishmentSituation") |
|
|
|
|
|