deason il y a 6 ans
Parent
commit
18b31ed35b

+ 5 - 0
examcloud-core-print-common/pom.xml

@@ -11,6 +11,11 @@
     </parent>
 
     <dependencies>
+        <dependency>
+            <groupId>cn.com.qmth.examcloud.rmi</groupId>
+            <artifactId>examcloud-core-print-api-client</artifactId>
+            <version>${examcloud.version}</version>
+        </dependency>
         <dependency>
             <groupId>com.google.guava</groupId>
             <artifactId>guava</artifactId>

+ 2 - 1
examcloud-core-print-provider/src/main/java/cn/com/qmth/examcloud/core/print/api/provider/PrintingProjectCloudServiceProvider.java

@@ -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;