|
@@ -818,8 +818,15 @@ public class ZwywLrJbxxServiceImpl implements IZwywLrJbxxService {
|
|
|
List<String> jmZjhm = Stream.of(zwywLrJbxx.getLrJmzjhm().split(",")).collect(Collectors.toList());
|
|
|
jmZjhm.forEach(j -> {
|
|
|
InLnstLrxx lr = zwywLrJbxxMapper.selectOne(new LambdaQueryWrapper<InLnstLrxx>().eq(InLnstLrxx::getLrJmzjhm, j));
|
|
|
- EncryptionUtils.decryptForPlaintext(lr);
|
|
|
- res.add(lr);
|
|
|
+ if (ObjectUtils.isNotEmpty(lr)) {
|
|
|
+ EncryptionUtils.decryptForPlaintext(lr);
|
|
|
+ InLnstLrxx query = new InLnstLrxx();
|
|
|
+ query.setLrJmzjhm(lr.getLrZjhm());
|
|
|
+ query.setLrHjdz(lr.getLrHjdz().substring(0, 6));
|
|
|
+ query.setLrCsrq(lr.getLrCsrq());
|
|
|
+ lr.setObtbz(zwywLrJbxxMapper.selectObtbz(query));
|
|
|
+ res.add(lr);
|
|
|
+ }
|
|
|
});
|
|
|
return res;
|
|
|
}
|