|
@ -1151,6 +1151,22 @@ public class HuzhouProjectinfoServiceImpl extends ServiceImpl<HuzhouProjectinfoM |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public List<String> getDutyWorkplaceList() { |
|
|
|
|
|
HuzhouProjectinfo info = new HuzhouProjectinfo(); |
|
|
|
|
|
List<HuzhouProjectinfoOV> infoList = projectinfoMapper.getProjectAndChildInfoPageList(info); |
|
|
|
|
|
List<String> result = infoList.stream().map(x -> x.getDutyWorkplace()).collect(Collectors.toList()); |
|
|
|
|
|
return result; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
public List<String> getAdminDivisionList() { |
|
|
|
|
|
HuzhouProjectinfo info = new HuzhouProjectinfo(); |
|
|
|
|
|
List<HuzhouProjectinfoOV> infoList = projectinfoMapper.getProjectAndChildInfoPageList(info); |
|
|
|
|
|
List<String> result = infoList.stream().map(x -> x.getAdminDivision()).collect(Collectors.toList()); |
|
|
|
|
|
return result; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
public TotalProgressOV countNumByPlan(List<String> projectIds) { |
|
|
public TotalProgressOV countNumByPlan(List<String> projectIds) { |
|
|
|
|
|
|
|
|
List<String> planName = new ArrayList<>(); |
|
|
List<String> planName = new ArrayList<>(); |
|
|