|
|
@@ -30,6 +30,9 @@ public class LearnPlanServiceImpl implements ILearnPlanService
|
|
|
|
|
|
public void updateLearnPlan(Long studentId) {
|
|
|
LearnPlan curr = getCurrLearnPlan();
|
|
|
+ if(null == curr) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
LearnPlanStudy cond = new LearnPlanStudy();
|
|
|
cond.setStudentId(studentId);
|
|
|
cond.setPlanId(curr.getId());
|