|
|
@@ -99,7 +99,7 @@ public class AppClassGroupingServiceImpl extends ServiceImpl<AppClassGroupingMap
|
|
|
studentInfoVO.setLevelInfo("无");
|
|
|
studentInfoVO.setOrChoose(true);
|
|
|
if (appSite.getType() == 0) {
|
|
|
- if (appOrderProInfo.getLevelInfo() != null) {
|
|
|
+ if (ObjectUtil.isNotEmpty(appOrderProInfo.getLevelInfo())) {
|
|
|
studentInfoVO.setSchoolName(appSite.getName());
|
|
|
studentInfoVO.setLevelInfo(appOrderProInfo.getLevelInfo());
|
|
|
}
|
|
|
@@ -116,7 +116,7 @@ public class AppClassGroupingServiceImpl extends ServiceImpl<AppClassGroupingMap
|
|
|
studentInfoVO.setSchoolName("无");
|
|
|
studentInfoVO.setLevelInfo("无");
|
|
|
if (appSite.getType() == 0) {
|
|
|
- if (appOrderProInfo.getLevelInfo() != null) {
|
|
|
+ if (ObjectUtil.isNotEmpty(appOrderProInfo.getLevelInfo())) {
|
|
|
studentInfoVO.setSchoolName(appSite.getName());
|
|
|
studentInfoVO.setLevelInfo(appOrderProInfo.getLevelInfo());
|
|
|
}
|