diff --git a/src/main/java/com/spring/modules/customer/mapper/ProjectInformationMapper.java b/src/main/java/com/spring/modules/customer/mapper/ProjectInformationMapper.java index aff65732..93e4fcf6 100644 --- a/src/main/java/com/spring/modules/customer/mapper/ProjectInformationMapper.java +++ b/src/main/java/com/spring/modules/customer/mapper/ProjectInformationMapper.java @@ -9,4 +9,6 @@ import java.util.List; public interface ProjectInformationMapper { List projectInformationSearch(PlmProjectInfoData data); + + List projectInformationSearchAll(PlmProjectInfoData data); } diff --git a/src/main/java/com/spring/modules/customer/service/impl/ProjectInformationServiceImpl.java b/src/main/java/com/spring/modules/customer/service/impl/ProjectInformationServiceImpl.java index d86945b7..f6bc0b8e 100644 --- a/src/main/java/com/spring/modules/customer/service/impl/ProjectInformationServiceImpl.java +++ b/src/main/java/com/spring/modules/customer/service/impl/ProjectInformationServiceImpl.java @@ -33,7 +33,7 @@ public class ProjectInformationServiceImpl implements ProjectInformationService public List projectInformationSearchByCustomers(PlmProjectInfoData data) { List list = new ArrayList<>(); for (PlmProjectInfoData plmProjectInfoData : data.getProjectList()) { - list.addAll(projectInformationMapper.projectInformationSearch(plmProjectInfoData)); + list.addAll(projectInformationMapper.projectInformationSearchAll(plmProjectInfoData)); } return list; } diff --git a/src/main/resources/mapper/customer/ProjectInformationMapper.xml b/src/main/resources/mapper/customer/ProjectInformationMapper.xml index 8875a225..7870defb 100644 --- a/src/main/resources/mapper/customer/ProjectInformationMapper.xml +++ b/src/main/resources/mapper/customer/ProjectInformationMapper.xml @@ -4,6 +4,38 @@ + +