mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-20 02:55:04 +08:00
添加汇付支付回调接口
This commit is contained in:
@@ -3,6 +3,8 @@ package com.jsowell.api.uniapp;
|
|||||||
import com.alibaba.fastjson2.JSON;
|
import com.alibaba.fastjson2.JSON;
|
||||||
import com.alibaba.fastjson2.JSONObject;
|
import com.alibaba.fastjson2.JSONObject;
|
||||||
import com.google.common.collect.ImmutableMap;
|
import com.google.common.collect.ImmutableMap;
|
||||||
|
import com.huifu.adapay.core.AdapayCore;
|
||||||
|
import com.huifu.adapay.core.util.AdapaySign;
|
||||||
import com.jsowell.common.annotation.Anonymous;
|
import com.jsowell.common.annotation.Anonymous;
|
||||||
import com.jsowell.common.core.controller.BaseController;
|
import com.jsowell.common.core.controller.BaseController;
|
||||||
import com.jsowell.common.core.redis.RedisCache;
|
import com.jsowell.common.core.redis.RedisCache;
|
||||||
|
|||||||
@@ -82,6 +82,16 @@
|
|||||||
<groupId>com.alibaba.fastjson2</groupId>
|
<groupId>com.alibaba.fastjson2</groupId>
|
||||||
<artifactId>fastjson2</artifactId>
|
<artifactId>fastjson2</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.huifu.adapay.core</groupId>
|
||||||
|
<artifactId>adapay-core-sdk</artifactId>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.huifu.adapay</groupId>
|
||||||
|
<artifactId>adapay-java-sdk</artifactId>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -91,7 +91,9 @@ public interface IPileConnectorInfoService {
|
|||||||
*/
|
*/
|
||||||
int updateConnectorStatus(String connectorCode, String status);
|
int updateConnectorStatus(String connectorCode, String status);
|
||||||
|
|
||||||
/**
|
String pushConnectorStatus(String pileConnectorCode, String status);
|
||||||
|
|
||||||
|
/**
|
||||||
* 通过桩编号修改枪口状态
|
* 通过桩编号修改枪口状态
|
||||||
* 仅用于登录逻辑使用
|
* 仅用于登录逻辑使用
|
||||||
* @param pileSn 桩编号
|
* @param pileSn 桩编号
|
||||||
|
|||||||
15
pom.xml
15
pom.xml
@@ -35,6 +35,7 @@
|
|||||||
<guava.version>20.0</guava.version>
|
<guava.version>20.0</guava.version>
|
||||||
<spring.boot.test.version>2.5.14</spring.boot.test.version>
|
<spring.boot.test.version>2.5.14</spring.boot.test.version>
|
||||||
<netty-all.version>4.1.75.Final</netty-all.version>
|
<netty-all.version>4.1.75.Final</netty-all.version>
|
||||||
|
<huifu.version>1.2.10</huifu.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<!-- 依赖声明 -->
|
<!-- 依赖声明 -->
|
||||||
@@ -280,6 +281,20 @@
|
|||||||
<version>5.7.3</version>
|
<version>5.7.3</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
|
<!-- https://mvnrepository.com/artifact/com.huifu.adapay.core/adapay-core-sdk -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.huifu.adapay.core</groupId>
|
||||||
|
<artifactId>adapay-core-sdk</artifactId>
|
||||||
|
<version>${huifu.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
|
<!-- https://mvnrepository.com/artifact/com.huifu.adapay/adapay-java-sdk -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>com.huifu.adapay</groupId>
|
||||||
|
<artifactId>adapay-java-sdk</artifactId>
|
||||||
|
<version>${huifu.version}</version>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
</dependencies>
|
</dependencies>
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user