|
|
|
@ -269,10 +269,16 @@ public class DatavServiceImpl implements DatavService { |
|
|
|
.map(list -> list.get(0)) |
|
|
|
.map(list -> list.get(0)) |
|
|
|
.orElseThrow(() -> new RuntimeException("未查询到" + departDto.getParentName() + "的外部部门信息")); |
|
|
|
.orElseThrow(() -> new RuntimeException("未查询到" + departDto.getParentName() + "的外部部门信息")); |
|
|
|
|
|
|
|
|
|
|
|
MailQueryParam mailQueryParam = new MailQueryParam(); |
|
|
|
// MailQueryParam mailQueryParam = new MailQueryParam();
|
|
|
|
mailQueryParam.setSecondDeptId(depart.getExternalId()); |
|
|
|
// mailQueryParam.setSecondDeptId(depart.getExternalId());
|
|
|
|
mailQueryParam.setCreateTime(dates); |
|
|
|
// mailQueryParam.setMailTime(dates);
|
|
|
|
long mailCount = mailResourceService.count(mailQueryParam); |
|
|
|
// long mailCount = mailResourceService.count(mailQueryParam);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
QueryWrapper<Mail> mailQueryWrapper = new QueryWrapper<>(); |
|
|
|
|
|
|
|
mailQueryWrapper.ne("mail_state", VALID_SIGN); |
|
|
|
|
|
|
|
mailQueryWrapper.between("mail_time", request.getBeginTime(), request.getEndTime()); |
|
|
|
|
|
|
|
mailQueryWrapper.in("second_dept_id", depart.getExternalId()); |
|
|
|
|
|
|
|
long mailCount = mailMapper.selectCount(mailQueryWrapper); |
|
|
|
|
|
|
|
|
|
|
|
globalMapIconVo.setSupervisionPro(supervisionProCount); |
|
|
|
globalMapIconVo.setSupervisionPro(supervisionProCount); |
|
|
|
globalMapIconVo.setNumSupervisionPro(numSupervisionProCount); |
|
|
|
globalMapIconVo.setNumSupervisionPro(numSupervisionProCount); |
|
|
|
@ -369,9 +375,10 @@ public class DatavServiceImpl implements DatavService { |
|
|
|
ajhcQueryParam.setCreateTime(dates); |
|
|
|
ajhcQueryParam.setCreateTime(dates); |
|
|
|
long ajhcCount = dataCaseVerifResourceService.count(ajhcQueryParam); |
|
|
|
long ajhcCount = dataCaseVerifResourceService.count(ajhcQueryParam); |
|
|
|
// 局长信箱
|
|
|
|
// 局长信箱
|
|
|
|
MailQueryParam mailQueryParam = new MailQueryParam(); |
|
|
|
QueryWrapper<Mail> mailQueryWrapper = new QueryWrapper<>(); |
|
|
|
mailQueryParam.setMailTime(dates); |
|
|
|
mailQueryWrapper.ne("mail_state", VALID_SIGN); |
|
|
|
long jzxxCount = mailResourceService.count(mailQueryParam); |
|
|
|
mailQueryWrapper.between("mail_time", request.getBeginTime(), request.getEndTime()); |
|
|
|
|
|
|
|
long jzxxCount = mailMapper.selectCount(mailQueryWrapper); |
|
|
|
|
|
|
|
|
|
|
|
// 12337
|
|
|
|
// 12337
|
|
|
|
NegativeQueryParam xf12337Param = new NegativeQueryParam(); |
|
|
|
NegativeQueryParam xf12337Param = new NegativeQueryParam(); |
|
|
|
|