Ver Fonte

fix 学习记录

he2802 há 3 anos atrás
pai
commit
6131e931aa

+ 12 - 0
zhongzheng-admin/src/main/java/com/zhongzheng/controller/grade/ClassGradeController.java

@@ -143,6 +143,18 @@ public class ClassGradeController extends BaseController {
         return getDataTable(list);
     }
 
+    /**
+     * 查询学时学员记录列表
+     */
+    @ApiOperation("查询学员学习记录列表")
+    @PreAuthorize("@ss.hasPermi('grade:user:list')")
+    @GetMapping("/listUserStudyRecord")
+    public TableDataInfo<UserPeriodExportVo> listUserStudyRecord(ClassGradeUserQueryBo bo) {
+        startPage();
+        List<UserPeriodExportVo> list = iClassGradeUserService.listUserStudyRecord(bo);
+        return getDataTable(list);
+    }
+
     /**
      * 导出资料审核列表
      */