|
@@ -10,6 +10,7 @@ import com.miaxis.tms.dto.TmsStudentInfoIdDTO;
|
|
|
import com.miaxis.tms.dto.TmsStudentInfoQrDTO;
|
|
|
import com.miaxis.tms.service.ITmsStudentInfoService;
|
|
|
import com.miaxis.tms.vo.TmsLogFaceVo;
|
|
|
+import com.miaxis.tms.vo.TmsSignVo;
|
|
|
import com.miaxis.tms.vo.TmsStudentInfoIdVo;
|
|
|
import com.miaxis.tms.vo.TmsStudentInfoVo;
|
|
|
import io.swagger.annotations.Api;
|
|
@@ -70,12 +71,33 @@ public class TmsStudentInfoController extends BaseController {
|
|
|
*/
|
|
|
@GetMapping("/getTmsLogFacListByStuId")
|
|
|
@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) {
|
|
|
startPage();
|
|
|
List<TmsLogFaceVo> logFaceListList = studentInfoService.getTmsLogFacListByStuId(studentInfoIdDTO);
|
|
|
return toResponsePageInfo(logFaceListList);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据学员id获取签到签退列表
|
|
|
+ */
|
|
|
+ @GetMapping("/getTmsSignListByStuId")
|
|
|
+ @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<TmsSignVo> getTmsSignListByStuId(TmsStudentInfoIdDTO studentInfoIdDTO) {
|
|
|
+ startPage();
|
|
|
+ List<TmsSignVo> signList= studentInfoService.getTmsSignListByStuId(studentInfoIdDTO);
|
|
|
+ return toResponsePageInfo(signList);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 根据学员ID绑定APP教练员(极速驾培调用)
|
|
|
*/
|