fix(QualityInspectUserDataVO): studentWorkShixunCodeIds空判断

master
youys 4 months ago
parent b26b392c27
commit f9e7f6f4e7

@ -65,6 +65,9 @@ public class QualityInspectUserDataVO implements Serializable {
}
public List<Long> getStudentWorkShixunCodeIds() {
if (studentWorkShixunCodeIds == null) {
studentWorkShixunCodeIds = java.util.Collections.emptyList();
}
return studentWorkShixunCodeIds;
}

Loading…
Cancel
Save