|
@@ -48,6 +48,7 @@ import java.time.temporal.ChronoUnit;
|
|
|
import java.util.*;
|
|
|
import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
|
+import java.util.stream.Stream;
|
|
|
|
|
|
@Service
|
|
|
public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> implements VipGroupService {
|
|
@@ -804,6 +805,12 @@ public class VipGroupServiceImpl extends BaseServiceImpl<Long, VipGroup> impleme
|
|
|
Map<String, Object> params = new HashMap<String, Object>();
|
|
|
MapUtil.populateMap(params, queryInfo);
|
|
|
|
|
|
+ List<String> organIds = new ArrayList<>();
|
|
|
+ if(StringUtils.isNotBlank(queryInfo.getOrganId())){
|
|
|
+ organIds = Arrays.stream(queryInfo.getOrganId().split(",")).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+ params.put("organIds", organIds);
|
|
|
+
|
|
|
List<VipGroupStudentDto> dataList = null;
|
|
|
int count = vipGroupDao.countHaveCourseBalanceStudentNum(params);
|
|
|
if (count > 0) {
|