|
@@ -16,10 +16,7 @@ import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.http.HttpStatus;
|
|
|
import org.springframework.http.MediaType;
|
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
-import org.springframework.web.bind.annotation.RequestParam;
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import com.ym.mec.auth.api.client.SysUserFeignService;
|
|
@@ -319,9 +316,9 @@ public class StudentManageController extends BaseController {
|
|
|
* 学员注册激活比例列表
|
|
|
* @return
|
|
|
*/
|
|
|
- @GetMapping(value = "studentManage/queryStudentPer")
|
|
|
- public Object queryStudentPer() {
|
|
|
- return succeed(studentManageService.queryStudentPer());
|
|
|
+ @GetMapping(value = "studentManage/queryStudentPer/{tenantId}")
|
|
|
+ public Object queryStudentPer(@ApiParam(value = "机构Id", required = true) @PathVariable("tenantId") Integer tenantId) {
|
|
|
+ return succeed(studentManageService.queryStudentPer(tenantId));
|
|
|
}
|
|
|
|
|
|
|