|
@@ -8,6 +8,7 @@
|
|
|
package cn.com.qmth.examcloud.core.print.api.provider;
|
|
|
|
|
|
import cn.com.qmth.examcloud.commons.web.support.ControllerSupport;
|
|
|
+import cn.com.qmth.examcloud.core.print.api.PrintingProjectCloudService;
|
|
|
import cn.com.qmth.examcloud.core.print.service.PrintingProjectService;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -23,7 +24,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
@RestController
|
|
|
@Api(tags = "印刷项目相关接口")
|
|
|
@RequestMapping("${$rmp.cloud.print}/printing/project")
|
|
|
-public class PrintingProjectCloudServiceProvider extends ControllerSupport {
|
|
|
+public class PrintingProjectCloudServiceProvider extends ControllerSupport implements PrintingProjectCloudService {
|
|
|
@Autowired
|
|
|
private PrintingProjectService printingProjectService;
|
|
|
|