ソースを参照

feature: 添加远程调用查询SRM数据

yangchao 2 週間 前
コミット
15a5aa915f
8 ファイル変更112 行追加3 行削除
  1. 10 0
      .gitignore
  2. BIN
      .swp
  3. 7 0
      README.md
  4. BIN
      jrebel-classpath-7392.jar
  5. 92 0
      pom.xml
  6. 1 1
      service-configuration
  7. 1 1
      service-entity
  8. 1 1
      service-querySrm

+ 10 - 0
.gitignore

@@ -0,0 +1,10 @@
+.project
+.classpath
+.settings/
+target/
+.DS_Store
+*.iml
+bin/
+.idea/
+logs/
+


+ 7 - 0
README.md

@@ -0,0 +1,7 @@
+# Service-querySrm-parent
+
+Service Rent Parent
+
+## 业务范围
+
+    * 牧场租赁服务

BIN
jrebel-classpath-7392.jar


+ 92 - 0
pom.xml

@@ -0,0 +1,92 @@
+<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>
+
+	<groupId>cn.com.citycloud</groupId>
+	<artifactId>service-querySrm-parent</artifactId>
+	<version>0.0.1-SNAPSHOT</version>
+	<packaging>pom</packaging>
+
+	<name>service-querySrm-parent</name>
+	<url>http://maven.apache.org</url>
+
+	<properties>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<jdk.version>1.8</jdk.version>
+		<maven.compile.plugin.version>3.6.1</maven.compile.plugin.version>
+	</properties>
+
+	<parent>
+		<groupId>org.springframework.boot</groupId>
+		<artifactId>spring-boot-starter-parent</artifactId>
+		<version>1.5.2.RELEASE</version>
+	</parent>
+
+	<modules>
+		<module>service-common</module>
+		<module>service-entity</module>
+		<module>service-configuration</module>
+		<module>service-querySrm</module>
+	</modules>
+
+	<dependencies>
+
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-web</artifactId>
+		</dependency>
+
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+		<!-- 企业要素核验 -->
+		<dependency>
+			<groupId>com.aliyun</groupId>
+			<artifactId>cloudauth20221125</artifactId>
+			<version>1.1.1</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>${jdk.version}</source>
+					<target>${jdk.version}</target>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<reporting>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-checkstyle-plugin</artifactId>
+				<version>2.17</version>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>findbugs-maven-plugin</artifactId>
+				<version>3.0.4</version>
+				<configuration>
+					<xmlOutput>true</xmlOutput>
+					<findbugsXmlOutput>true</findbugsXmlOutput>
+				</configuration>
+			</plugin>
+		</plugins>
+	</reporting>
+</project>

+ 1 - 1
service-configuration

@@ -1 +1 @@
-Subproject commit f484730fc45473657c9ef34c76793a52ea94a23a
+Subproject commit e97d6bd9a6b60a2192609098c5c90604d412c2ae

+ 1 - 1
service-entity

@@ -1 +1 @@
-Subproject commit 1fcaa31fccac77f1fa53381fe2611cb11d8665ec
+Subproject commit 4f15552b9d483a54f08487cec027ad79cbc677fc

+ 1 - 1
service-querySrm

@@ -1 +1 @@
-Subproject commit 210eb79931d26fe11ddcc330b1d44c9d26fe6508
+Subproject commit e317ee3448a0258f1276adfeab8b9264b9112727