lengfaqiang 2 лет назад
Родитель
Сommit
7b8bbe82b8

+ 1 - 0
sckw-modules-api/pom.xml

@@ -16,6 +16,7 @@
         <module>sckw-file-api</module>
         <module>sckw-message-api</module>
         <module>sckw-modules-bom</module>
+        <module>sckw-transport-api</module>
     </modules>
 
     <properties>

+ 20 - 0
sckw-modules-api/sckw-transport-api/pom.xml

@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>com.sckw</groupId>
+        <artifactId>sckw-modules-api</artifactId>
+        <version>1.0.0</version>
+    </parent>
+
+    <artifactId>sckw-transport-api</artifactId>
+
+    <properties>
+        <maven.compiler.source>17</maven.compiler.source>
+        <maven.compiler.target>17</maven.compiler.target>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    </properties>
+
+</project>

+ 8 - 0
sckw-modules-api/sckw-transport-api/src/main/java/com/sckw/transport/api/dubbo/TransportDubboService.java

@@ -0,0 +1,8 @@
+package com.sckw.transport.api.dubbo;
+
+/**
+ *
+ *
+ */
+public interface TransportDubboService {
+}

+ 6 - 0
sckw-modules/sckw-transport/pom.xml

@@ -74,6 +74,12 @@
             <artifactId>sckw-common-stream</artifactId>
         </dependency>
 
+        <dependency>
+            <groupId>com.sckw</groupId>
+            <artifactId>sckw-transport-api</artifactId>
+            <version>1.0.0</version>
+        </dependency>
+
         <!-- validation -->
         <dependency>
             <groupId>org.springframework.boot</groupId>

+ 10 - 0
sckw-modules/sckw-transport/src/main/java/com/sckw/transport/service/dubbo/TransportDubboServiceImpl.java

@@ -0,0 +1,10 @@
+package com.sckw.transport.service.dubbo;
+
+/**
+ * @author lfdc
+ * @description 运输服务dubbo接口
+ * @date 2023-07-11 14:07:28
+ */
+public class TransportDubboServiceImpl implements TransportDubboService{
+
+}