| | |
| | | }); |
| | | |
| | | //查询高龄认证记录列表 |
| | | List<ComElderAuthRecordsDO> authRecordsList = comElderAuthRecordsDAO.selectList(new QueryWrapper<ComElderAuthRecordsDO>().lambda() |
| | | .ge(ComElderAuthRecordsDO::getCreateAt,DateUtils.getFirstDayOfMonth())); |
| | | List<ComElderAuthRecordsDO> authRecordsList = comElderAuthRecordsDAO.selectList(null); |
| | | //遍历高龄认证记录列表 |
| | | authRecordsList.forEach(authRecords -> { |
| | | if(authRecords.getApprovalStatus().equals(ComElderAuthRecordsDO.approvalStatus.tg)){ |
| | |
| | | }); |
| | | |
| | | //查询养老认证记录列表 |
| | | List<ComPensionAuthRecordDO> pensionAuthList = comPensionAuthRecordDAO.selectList(new QueryWrapper<ComPensionAuthRecordDO>().lambda() |
| | | .ge(ComPensionAuthRecordDO::getCreateAt,DateUtils.getFirstDayOfMonth())); |
| | | List<ComPensionAuthRecordDO> pensionAuthList = comPensionAuthRecordDAO.selectList(null); |
| | | //遍历养老认证记录列表 |
| | | pensionAuthList.forEach(authRecords -> { |
| | | ComPensionAuthHistoryRecordDO pensionAuthDO = comPensionAuthHistoryRecordMapper.selectOne(new QueryWrapper<ComPensionAuthHistoryRecordDO>().lambda() |