|
|
@@ -3,6 +3,7 @@ package com.zhongzheng.controller.grade;
|
|
|
import java.util.List;
|
|
|
import java.util.Arrays;
|
|
|
|
|
|
+import com.zhongzheng.common.utils.ServletUtils;
|
|
|
import com.zhongzheng.modules.grade.bo.ClassGradeInterfaceQueryBo;
|
|
|
import com.zhongzheng.modules.grade.service.IClassGradeInterfaceService;
|
|
|
import com.zhongzheng.modules.grade.vo.ClassGradeInterfaceVo;
|
|
|
@@ -59,6 +60,17 @@ public class ClassGradeController extends BaseController {
|
|
|
return getDataTable(list);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询班级列表
|
|
|
+ */
|
|
|
+ @ApiOperation("是否出现官方接口选择")
|
|
|
+ @PreAuthorize("@ss.hasPermi('modules.grade:grade:select')")
|
|
|
+ @GetMapping("/select")
|
|
|
+ public AjaxResult<Void> select(ClassGradeAddBo bo) {
|
|
|
+ boolean tenantId = ServletUtils.getRequest().getHeader("TenantId").equals("867735392558919680");
|
|
|
+ return toAjax(tenantId);
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询官方接口
|
|
|
*/
|