|
@@ -168,11 +168,21 @@ public class TmsStudentInfoController extends BaseController {
|
|
|
* 根据学员id获取详细信息
|
|
|
*/
|
|
|
@GetMapping("/getTmsStudentInfoById")
|
|
|
- @ApiOperation("根据ID获取学员员详细信息(无时间点)")
|
|
|
+ @ApiOperation("根据ID获取学员详细信息(无时间点)")
|
|
|
public Response<TmsStudentInfoIdVo> getTmsStudentInfoById(TmsStudentInfoIdDTO studentInfoIdDTO) {
|
|
|
return Response.success(studentInfoService.getTmsStudentInfoById(studentInfoIdDTO));
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 根据预约报名学员id获取详细信息
|
|
|
+ */
|
|
|
+ @GetMapping("/getTmsStudentInfoTempById")
|
|
|
+ @ApiOperation("根据ID获取预约报名学员详细信息(无时间点)")
|
|
|
+ public Response<TmsStudentInfoIdVo> getTmsStudentInfoTempById(TmsStudentInfoIdDTO studentInfoIdDTO) {
|
|
|
+ return Response.success(studentInfoService.getTmsStudentInfoTempById(studentInfoIdDTO));
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 温州根据学员id获取详细信息
|
|
|
*/
|