|
@@ -1,34 +0,0 @@
|
|
-package cn.com.qmth.examcloud.exchange.outer.api.provider;
|
|
|
|
-
|
|
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
-import org.springframework.web.bind.annotation.RestController;
|
|
|
|
-
|
|
|
|
-import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.outer.api.DemoOuterService;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.outer.api.request.GetXxxReq;
|
|
|
|
-import cn.com.qmth.examcloud.exchange.outer.api.response.GetXxxResp;
|
|
|
|
-import io.swagger.annotations.ApiOperation;
|
|
|
|
-
|
|
|
|
-/**
|
|
|
|
- * DEMO
|
|
|
|
- *
|
|
|
|
- * @author WANGWEI
|
|
|
|
- * @date 2018年6月29日
|
|
|
|
- * @Copyright (c) 2018-? http://qmth.com.cn All Rights Reserved.
|
|
|
|
- */
|
|
|
|
-@RestController
|
|
|
|
-@RequestMapping("${$rmp.cloud.exchange.outer}/demo")
|
|
|
|
-public class DemoOuterServiceProvider extends ControllerSupport implements DemoOuterService {
|
|
|
|
-
|
|
|
|
- private static final long serialVersionUID = 3492976574163728116L;
|
|
|
|
-
|
|
|
|
- @ApiOperation(value = "DEMO", notes = "DEMO")
|
|
|
|
- @PostMapping("getXxx")
|
|
|
|
- @Override
|
|
|
|
- public GetXxxResp getXxx(@RequestBody GetXxxReq req) {
|
|
|
|
- return null;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
-}
|
|
|