|
@@ -7,6 +7,7 @@ import com.miaxis.common.core.domain.Response;
|
|
|
import com.miaxis.common.core.page.ResponsePageInfo;
|
|
|
import com.miaxis.tms.dto.TmsStudentInfoDTO;
|
|
|
import com.miaxis.tms.dto.TmsStudentInfoIdDTO;
|
|
|
+import com.miaxis.tms.dto.TmsStudentInfoQrDTO;
|
|
|
import com.miaxis.tms.service.ITmsStudentInfoService;
|
|
|
import com.miaxis.tms.vo.TmsStudentInfoIdVo;
|
|
|
import com.miaxis.tms.vo.TmsStudentInfoVo;
|
|
@@ -38,10 +39,10 @@ public class TmsStudentInfoController extends BaseController {
|
|
|
private ITmsStudentInfoService studentInfoService;
|
|
|
|
|
|
/**
|
|
|
- * 查询考场信息列表
|
|
|
+ * 查询学员信息列表
|
|
|
*/
|
|
|
@GetMapping("/list")
|
|
|
- @ApiOperation("查询考场信息列表")
|
|
|
+ @ApiOperation("查询学员信息列表")
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "pageNum", value = "当前页码", dataType = "int", paramType = "query", required = false),
|
|
|
@ApiImplicitParam(name = "pageSize", value = "每页数据量", dataType = "int", paramType = "query", required = false),
|
|
@@ -63,5 +64,29 @@ public class TmsStudentInfoController extends BaseController {
|
|
|
}
|
|
|
|
|
|
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 绑定IP
|
|
|
+ */
|
|
|
+ @GetMapping("/updateStudentAppCoachIdById")
|
|
|
+ @ApiOperation("根据ID获取学员员详细信息")
|
|
|
+ public Response updateStuAppCoachIdById(TmsStudentInfoQrDTO studentInfoQrDTO) {
|
|
|
+ studentInfoService.upStuAppCoachIdById(studentInfoQrDTO);
|
|
|
+ return Response.success();
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|