|
@@ -1,13 +1,8 @@
|
|
package cn.com.qmth.examcloud.exchange.outer.api.controller.swufe;
|
|
package cn.com.qmth.examcloud.exchange.outer.api.controller.swufe;
|
|
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.security.bean.User;
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.base.response.FailureBaseResponse;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.base.response.SuccessBaseResponse;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.dao.ExamScoreRepo;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.dao.bean.OutletScore;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.outer.service.OutletScoreService;
|
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
|
|
+import javax.servlet.http.HttpServletRequest;
|
|
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.http.HttpStatus;
|
|
import org.springframework.http.HttpStatus;
|
|
@@ -18,14 +13,13 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-import javax.servlet.http.HttpServletRequest;
|
|
|
|
-
|
|
|
|
-import java.util.List;
|
|
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.security.bean.User;
|
|
|
|
+import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
|
+import cn.com.qmth.examcloud.exchange.base.response.FailureBaseResponse;
|
|
|
|
+import cn.com.qmth.examcloud.exchange.base.response.SuccessBaseResponse;
|
|
|
|
+import cn.com.qmth.examcloud.exchange.dao.bean.OutletScore;
|
|
|
|
+import cn.com.qmth.examcloud.exchange.outer.service.OutletScoreService;
|
|
|
|
+import io.swagger.annotations.ApiOperation;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 公共-获取成绩接口
|
|
* 公共-获取成绩接口
|
|
@@ -38,9 +32,6 @@ import java.util.List;
|
|
@RequestMapping("${$rmp.cloud.exchange.outer}/score")
|
|
@RequestMapping("${$rmp.cloud.exchange.outer}/score")
|
|
public class CommonGainScoreController extends ControllerSupport{
|
|
public class CommonGainScoreController extends ControllerSupport{
|
|
|
|
|
|
- @Autowired
|
|
|
|
- private ExamScoreRepo examScoreRepo;
|
|
|
|
-
|
|
|
|
@Autowired
|
|
@Autowired
|
|
private OutletScoreService outletScoreService;
|
|
private OutletScoreService outletScoreService;
|
|
|
|
|