chore(pom): 更新项目依赖版本至2.0.33-snapshot
parent
ee4e182334
commit
bf6f161d5d
12
pom.xml
12
pom.xml
|
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-sdk</name>
|
||||
<description>scfs-api-sdk</description>
|
||||
<packaging>pom</packaging>
|
||||
|
|
@ -75,27 +75,27 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-rsa</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-service</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sm</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-spring-boot-starter</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-core:核心模块</name>
|
||||
<description>scfs-api-core</description>
|
||||
<packaging>jar</packaging>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-rsa</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-rsa:RSA模块</name>
|
||||
<description>封装RSA、AES国密算法</description>
|
||||
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-service</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-service:业务接口模型</name>
|
||||
<description>业务接口模型</description>
|
||||
<packaging>jar</packaging>
|
||||
|
|
@ -24,7 +24,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</project>
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ public class MchConsignContractService {
|
|||
* @since 2026/5/28
|
||||
*/
|
||||
public BaseResponse add(MchConsignContractAddRequest request) {
|
||||
String url = "/t-mch-consign-contract/add";
|
||||
String url = "/mch-consign-contract/add";
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
headers.addHeader(API_VERSION, V_2);
|
||||
HttpResponse<BaseResponse> httpResponse = apiClient.post(url, headers, request.toJsonRequest(), BaseResponse.class);
|
||||
|
|
@ -44,7 +44,7 @@ public class MchConsignContractService {
|
|||
* @since 2026/5/28
|
||||
*/
|
||||
public BaseResponse del(MchConsignContractDelRequest request) {
|
||||
String url = "/t-mch-consign-contract/del";
|
||||
String url = "/mch-consign-contract/del";
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
headers.addHeader(API_VERSION, V_2);
|
||||
HttpResponse<BaseResponse> httpResponse = apiClient.post(url, headers, request.toJsonRequest(), BaseResponse.class);
|
||||
|
|
@ -58,7 +58,7 @@ public class MchConsignContractService {
|
|||
* @since 2026/5/28
|
||||
*/
|
||||
public MchConsignContractQueryPageResponse queryPage(MchConsignContractQueryPageRequest request) {
|
||||
String url = "/t-mch-consign-contract/query-page";
|
||||
String url = "/mch-consign-contract/query-page";
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
headers.addHeader(API_VERSION, V_2);
|
||||
HttpResponse<MchConsignContractQueryPageResponse> httpResponse = apiClient.post(url, headers, request.toJsonRequest(), MchConsignContractQueryPageResponse.class);
|
||||
|
|
@ -72,7 +72,7 @@ public class MchConsignContractService {
|
|||
* @since 2026/5/28
|
||||
*/
|
||||
public MchConsignContractQueryDetailResponse queryDetail(MchConsignContractQueryDetailRequest request) {
|
||||
String url = "/t-mch-consign-contract/query-detail";
|
||||
String url = "/mch-consign-contract/query-detail";
|
||||
HttpHeaders headers = new HttpHeaders();
|
||||
headers.addHeader(API_VERSION, V_2);
|
||||
HttpResponse<MchConsignContractQueryDetailResponse> httpResponse = apiClient.post(url, headers, request.toJsonRequest(), MchConsignContractQueryDetailResponse.class);
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-sm</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-sm:国密模块</name>
|
||||
<description>封装SM2、SM4国密算法</description>
|
||||
|
||||
|
|
@ -17,7 +17,7 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
|
||||
<!-- https://mvnrepository.com/artifact/com.tencent.kona/kona-crypto -->
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-spring-boot-starter</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-spring-boot-starter</name>
|
||||
<description>scfs-spring-boot-starter</description>
|
||||
|
||||
|
|
@ -17,22 +17,22 @@
|
|||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-core</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-service</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-rsa</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sm</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
<parent>
|
||||
<groupId>com.czcb.scfs</groupId>
|
||||
<artifactId>scfs-api-sdk</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>scfs-api-test</artifactId>
|
||||
<version>2.0.33</version>
|
||||
<version>2.0.33-snapshot</version>
|
||||
<name>scfs-api-test</name>
|
||||
<description>scfs-api-test</description>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue