Przeglądaj źródła

极速驾培绑定学员

小么熊🐻 2 lat temu
rodzic
commit
ecabae0d87

+ 3 - 4
jsjp-admin/src/main/java/com/miaxis/app/controller/tms/TmsStudentInfoController.java

@@ -66,13 +66,12 @@ public class TmsStudentInfoController extends BaseController {
 
 
     /**
-     * 绑定IP
+     * 根据学员ID绑定APP教练员
      */
     @GetMapping("/updateStudentAppCoachIdById")
-    @ApiOperation("根据ID获取学员员详细信息")
+    @ApiOperation("根据学员ID绑定APP教练员")
     public Response updateStuAppCoachIdById(TmsStudentInfoQrDTO studentInfoQrDTO) {
-        studentInfoService.upStuAppCoachIdById(studentInfoQrDTO);
-        return Response.success();
+        return Response.success(studentInfoService.upStuAppCoachIdById(studentInfoQrDTO));
     }
 
 }