Commit e7f5f761 by wangxin

报错

parent d5c961bf
......@@ -693,7 +693,11 @@ public class TrainingProjectServiceImpl extends ServiceImpl<TrainingProjectMappe
// 可见范围授权id
List<Long> relationIds = model.getContext().getRelationIds();
// 指定范围的可见
List<Long> visiableTpIds = tpAuthorizationRangeMapper.selectBizIdByRelationId(relationIds, siteId);
List<Long> visiableTpIds = new ArrayList<>();
if(relationIds!=null){
visiableTpIds = tpAuthorizationRangeMapper.selectBizIdByRelationId(relationIds, siteId);
}
// 报名通过的
List<Long> passEnrollTpIds = tpStudentEnrollPassedMapper.selectTpIds(model.getContext().getAccountId());
// 已经完成的
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment