feat: 权益类接口模块
parent
b7a09a82b4
commit
6db0e515d9
5
pom.xml
5
pom.xml
|
|
@ -10,7 +10,9 @@
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>8</java.version>
|
||||||
|
<maven.compiler.source>8</maven.compiler.source>
|
||||||
|
<maven.compiler.target>8</maven.compiler.target>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
|
@ -19,6 +21,7 @@
|
||||||
<module>scfs-api-rsa</module>
|
<module>scfs-api-rsa</module>
|
||||||
<module>scfs-api-service</module>
|
<module>scfs-api-service</module>
|
||||||
<module>scfs-api-service-cat</module>
|
<module>scfs-api-service-cat</module>
|
||||||
|
<module>scfs-api-service-equity</module>
|
||||||
<module>scfs-api-sm</module>
|
<module>scfs-api-sm</module>
|
||||||
<module>scfs-api-spring-boot-starter</module>
|
<module>scfs-api-spring-boot-starter</module>
|
||||||
<module>scfs-api-test</module>
|
<module>scfs-api-test</module>
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,36 @@
|
||||||
|
<?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.czcb.scfs</groupId>
|
||||||
|
<artifactId>scfs-api-sdk</artifactId>
|
||||||
|
<version>2.0.4-snapshot</version>
|
||||||
|
</parent>
|
||||||
|
|
||||||
|
<artifactId>scfs-api-service-equity</artifactId>
|
||||||
|
<name>scfs-api-service-equity</name>
|
||||||
|
<description>权益类</description>
|
||||||
|
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.springframework.boot</groupId>
|
||||||
|
<artifactId>spring-boot-autoconfigure</artifactId>
|
||||||
|
<version>2.7.16</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.projectlombok</groupId>
|
||||||
|
<artifactId>lombok</artifactId>
|
||||||
|
<version>1.18.30</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.czcb.scfs</groupId>
|
||||||
|
<artifactId>scfs-api-core</artifactId>
|
||||||
|
<version>2.0.4-snapshot</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
|
</project>
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
package com.czcb.scfs.service.equity.configuration;
|
||||||
|
|
||||||
|
import org.springframework.context.annotation.ComponentScan;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangwei
|
||||||
|
* @date 2024/7/1
|
||||||
|
*/
|
||||||
|
@Configuration
|
||||||
|
@ComponentScan("com.czcb.scfs.service.equity")
|
||||||
|
public class ScfsApiServiceEquityAutoConfiguration {
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
package com.czcb.scfs.service.equity.invoice;
|
||||||
|
|
||||||
|
import com.czcb.scfs.api.core.ApiClient;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangwei
|
||||||
|
* @date 2024/7/1
|
||||||
|
*/
|
||||||
|
public class InvoiceService {
|
||||||
|
private final ApiClient apiClient;
|
||||||
|
|
||||||
|
public InvoiceService(ApiClient apiClient) {
|
||||||
|
this.apiClient = apiClient;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
org.springframework.boot.autoconfigure.EnableAutoConfiguration=\
|
||||||
|
com.czcb.scfs.service.equity.configuration.ScfsApiServiceEquityAutoConfiguration
|
||||||
|
|
@ -0,0 +1,9 @@
|
||||||
|
package com.czcb.scfs.service.equity.configuration;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author wangwei
|
||||||
|
* @date 2024/7/1
|
||||||
|
*/
|
||||||
|
class ScfsApiServiceEquityAutoConfigurationTest {
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue