|
@@ -100,15 +100,15 @@ public class TmsStudentInfoController extends BaseController {
|
|
|
/**
|
|
|
* 根据学员id学员训练照片
|
|
|
*/
|
|
|
- @GetMapping("/getTmsLogFacListByStuId")
|
|
|
+ @GetMapping("/getTmsLogFaceListByStuId")
|
|
|
@ApiOperation("根据学员id学员训练照片")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "pageNum", value = "当前页码", dataType = "int", paramType = "query", required = false),
|
|
|
@ApiImplicitParam(name = "pageSize", value = "每页数据量", dataType = "int", paramType = "query", required = false),
|
|
|
})
|
|
|
- public ResponsePageInfo<TmsLogFaceVo> getTmsLogFacListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
|
|
|
+ public ResponsePageInfo<TmsLogFaceVo> getTmsLogFaceListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
|
|
|
startPage();
|
|
|
- List<TmsLogFaceVo> logFaceListList = studentInfoService.getTmsLogFacListByStuId(studentInfoIdDTO);
|
|
|
+ List<TmsLogFaceVo> logFaceListList = studentInfoService.getTmsLogFaceListByStuId(studentInfoIdDTO);
|
|
|
return toResponsePageInfo(logFaceListList);
|
|
|
}
|
|
|
|