|
@@ -242,4 +242,43 @@ public class ESubjectBadstudentController {
|
242
|
242
|
Map map = eSubjectBadstudentService.getJkGk(invigilate);
|
243
|
243
|
return new ResultVo(0, "获取成功", map);
|
244
|
244
|
}
|
|
245
|
+
|
|
246
|
+ /**
|
|
247
|
+ * 视频监控-学生列表(带违规数量)
|
|
248
|
+ *
|
|
249
|
+ * @return com.xhkjedu.vo.ResultVo
|
|
250
|
+ * @Param [invigilate]
|
|
251
|
+ * @Author ywx
|
|
252
|
+ * @Date 2022/12/30 12:18
|
|
253
|
+ **/
|
|
254
|
+ @PostMapping("/jk_xs3")
|
|
255
|
+ public ResultVo listJkStu3(@RequestBody ESubjectInvigilate invigilate) {
|
|
256
|
+ Integer esid = invigilate.getEsid();
|
|
257
|
+ Integer classid = invigilate.getClassid();
|
|
258
|
+ N_Utils.validation(new Object[]{esid, "考试科目id", 1, classid, "班级id", 1});
|
|
259
|
+ List<Map> list = eSubjectBadstudentService.listStu3(invigilate);
|
|
260
|
+ return new ResultVo(0, "获取成功", list);
|
|
261
|
+ }
|
|
262
|
+
|
|
263
|
+ /**
|
|
264
|
+ * 视频监控-学生照片详情
|
|
265
|
+ *
|
|
266
|
+ * @return com.xhkjedu.vo.ResultVo
|
|
267
|
+ * @Param [bs]
|
|
268
|
+ * @Author ywx
|
|
269
|
+ * @Date 2022/12/30 12:29
|
|
270
|
+ **/
|
|
271
|
+ @PostMapping("/list_xszp")
|
|
272
|
+ public ResultVo listXsZp(@RequestBody ESubjectBadstudent bs) {
|
|
273
|
+ Integer esid = bs.getEsid();
|
|
274
|
+ Integer studentid = bs.getStudentid();
|
|
275
|
+ Integer page = bs.getPage();
|
|
276
|
+ Integer pageSize = bs.getPageSize();
|
|
277
|
+ N_Utils.validation(new Object[]{esid, "考试科目id", 1, studentid, "学生id", 1
|
|
278
|
+ , page, "页码", 1, pageSize, "显示条数", 1});
|
|
279
|
+ PageHelper.startPage(page, pageSize);
|
|
280
|
+ List<Map> list = eSubjectBadstudentService.listXsZp(bs);
|
|
281
|
+ PageResult pageResult = PageUtil.getPageResult(new PageInfo<>(list));
|
|
282
|
+ return new ResultVo(0, "获取成功", pageResult);
|
|
283
|
+ }
|
245
|
284
|
}
|