diff --git a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java index 9c64164f..52cda0f1 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/common/service/impl/LawsCommonServiceImpl.java @@ -1348,7 +1348,7 @@ public class LawsCommonServiceImpl implements ILawsCommonService { Map stringObjectMap = processResultMap(initMap, fieldList); if (module.equals(TableNameEnum.ENTERPRISE_STANDARDS.getValue())) { - // 企标独有的稽查内容列表 + // 企标独有的监察内容列表 LambdaQueryWrapper esIcWrapper = new LambdaQueryWrapper<>(); esIcWrapper.eq(EnterpriseStandardInspectContent::getStandardId, id); List list = esInspectContentService.list(esIcWrapper); diff --git a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java index 2c85de32..5b503672 100644 --- a/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/laws/standard/service/impl/LawsReplacedStandardServiceImpl.java @@ -131,6 +131,7 @@ public class LawsReplacedStandardServiceImpl extends ServiceImpl replacedByList = replacedStandardList.stream() + .filter(e -> e.getReplaced().equals(e.getReplaced().split("《")[0])) .map(LawsReplacedStandard::getReplacedBy).collect(Collectors.toList()); return StringUtils.join(replacedByList, ","); }