|
@@ -92,10 +92,7 @@ import org.slf4j.LoggerFactory;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.http.MediaType;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
import org.springframework.security.access.prepost.PreAuthorize;
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
@@ -870,4 +867,17 @@ public class CommonController extends BaseController {
|
|
}
|
|
}
|
|
return AjaxResult.success("成功", iClassGradeUserService.sevenPushAuthCallBack(bo) ? 1 : 0);*/
|
|
return AjaxResult.success("成功", iClassGradeUserService.sevenPushAuthCallBack(bo) ? 1 : 0);*/
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ @GetMapping("/common/question/getMeasureList")
|
|
|
|
+ public AjaxResult<String> getMeasureList() {
|
|
|
|
+ String aa = iQuestionService.getMeasureList();
|
|
|
|
+ return AjaxResult.success("操作成功",aa);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @GetMapping("/common/question/getTopicList")
|
|
|
|
+ public AjaxResult<String> getTopicList(@RequestParam("topParam")String topParam) {
|
|
|
|
+ String aa = iQuestionService.getTopicList(topParam);
|
|
|
|
+ return AjaxResult.success("操作成功",aa);
|
|
|
|
+ }
|
|
}
|
|
}
|