|
|
|
@ -211,9 +211,12 @@ public class DataVRightsComfortController { |
|
|
|
List<RpcApply> list = rpcApplyService.list(new LambdaQueryWrapper<RpcApply>() |
|
|
|
List<RpcApply> list = rpcApplyService.list(new LambdaQueryWrapper<RpcApply>() |
|
|
|
.between(RpcApply::getCrtTime, beginTime, finalEndTime) |
|
|
|
.between(RpcApply::getCrtTime, beginTime, finalEndTime) |
|
|
|
.eq(RpcApply::getSecondDepartId,departId) |
|
|
|
.eq(RpcApply::getSecondDepartId,departId) |
|
|
|
|
|
|
|
.eq(RpcApply::getVerified,"2") |
|
|
|
.eq(RpcApply::getType, RpcApplyTypeEnum.RIGHTS_PROTECTION.getValue())); |
|
|
|
.eq(RpcApply::getType, RpcApplyTypeEnum.RIGHTS_PROTECTION.getValue())); |
|
|
|
|
|
|
|
|
|
|
|
Set<String> caseNumbers = list.stream().map(RpcApply::getCaseNumber).collect(Collectors.toSet()); |
|
|
|
Set<String> caseNumbers = list.stream() |
|
|
|
|
|
|
|
.map(RpcApply::getCaseNumber) |
|
|
|
|
|
|
|
.collect(Collectors.toSet()); |
|
|
|
|
|
|
|
|
|
|
|
// 维权案件总数
|
|
|
|
// 维权案件总数
|
|
|
|
re.setRightsNumber(caseNumbers.size()); |
|
|
|
re.setRightsNumber(caseNumbers.size()); |
|
|
|
|