新增考试申请审核时,新增字段。

This commit is contained in:
Renpc-kilig 2021-06-18 15:53:55 +08:00
parent 58c6b3635c
commit 54072a6467

View File

@ -172,6 +172,7 @@ public class ClassPlanServiceImpl extends DefaultBaseService implements IClassPl
// 0待审核 2审核通过 3审核不通过
checkVO.setCheckStatus(0);
checkVO.setWorkTypeId(obj.getString("workerCatalog"));
checkVO.setPoint("科员");
examCheckService.save(checkVO);
}
@ -320,6 +321,7 @@ public class ClassPlanServiceImpl extends DefaultBaseService implements IClassPl
//向报备审批表中添加申请记录
ExamCheckVO examCheckVO = new ExamCheckVO();
examCheckVO.setPlanId(classPlanId);
examCheckVO.setPoint("科员");
examCheckService.save(examCheckVO);
}
}