|
@@ -8,11 +8,14 @@ import com.zhongzheng.modules.grade.vo.ClassPeriodStudentVo;
|
|
import com.zhongzheng.modules.order.bo.OrderQueryBo;
|
|
import com.zhongzheng.modules.order.bo.OrderQueryBo;
|
|
import com.zhongzheng.modules.order.service.IOrderService;
|
|
import com.zhongzheng.modules.order.service.IOrderService;
|
|
import com.zhongzheng.modules.order.vo.OrderListVo;
|
|
import com.zhongzheng.modules.order.vo.OrderListVo;
|
|
|
|
+import com.zhongzheng.modules.user.bo.UserCertificateQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserVisitLogQueryBo;
|
|
import com.zhongzheng.modules.user.bo.UserVisitLogQueryBo;
|
|
|
|
+import com.zhongzheng.modules.user.service.IUserCertificateService;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordService;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordService;
|
|
import com.zhongzheng.modules.user.service.IUserVisitLogService;
|
|
import com.zhongzheng.modules.user.service.IUserVisitLogService;
|
|
import com.zhongzheng.modules.user.vo.ExamStudyRecordVo;
|
|
import com.zhongzheng.modules.user.vo.ExamStudyRecordVo;
|
|
|
|
+import com.zhongzheng.modules.user.vo.UserCertificateVo;
|
|
import com.zhongzheng.modules.user.vo.UserVisitLogVo;
|
|
import com.zhongzheng.modules.user.vo.UserVisitLogVo;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -43,6 +46,8 @@ public class DangAnController extends BaseController {
|
|
|
|
|
|
private final IUserStudyRecordService iUserStudyRecordService;
|
|
private final IUserStudyRecordService iUserStudyRecordService;
|
|
|
|
|
|
|
|
+ private final IUserCertificateService iUserCertificateService;
|
|
|
|
+
|
|
@ApiOperation("查询档案网课列表")
|
|
@ApiOperation("查询档案网课列表")
|
|
@PreAuthorize("@ss.hasPermi('grade:user:list')")
|
|
@PreAuthorize("@ss.hasPermi('grade:user:list')")
|
|
@GetMapping("/listVideoUserPeriod")
|
|
@GetMapping("/listVideoUserPeriod")
|
|
@@ -108,4 +113,13 @@ public class DangAnController extends BaseController {
|
|
return getDataTable(list);
|
|
return getDataTable(list);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @ApiOperation("查询档案证书列表")
|
|
|
|
+ @PreAuthorize("@ss.hasPermi('grade:student:list')")
|
|
|
|
+ @GetMapping("/listUserCertificate")
|
|
|
|
+ public TableDataInfo<UserCertificateVo> listUserCertificate(UserCertificateQueryBo bo) {
|
|
|
|
+ startPage();
|
|
|
|
+ List<UserCertificateVo> list = iUserCertificateService.selectList(bo);
|
|
|
|
+ return getDataTable(list);
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|