mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-06 23:18:01 +08:00
update 汇付支付回调
This commit is contained in:
@@ -1236,7 +1236,6 @@ public class OrderService {
|
|||||||
//验签请参publicKey
|
//验签请参publicKey
|
||||||
String publicKey = AdapayCore.PUBLIC_KEY;
|
String publicKey = AdapayCore.PUBLIC_KEY;
|
||||||
log.info("汇付支付回调验签请参data={}, sign={}", data, sign);
|
log.info("汇付支付回调验签请参data={}, sign={}", data, sign);
|
||||||
//验签
|
|
||||||
//验签标记
|
//验签标记
|
||||||
boolean checkSign = AdapaySign.verifySign(data, sign, publicKey);
|
boolean checkSign = AdapaySign.verifySign(data, sign, publicKey);
|
||||||
if (!checkSign) {
|
if (!checkSign) {
|
||||||
|
|||||||
@@ -1,19 +1,21 @@
|
|||||||
package com.jsowell.pile.mapper;
|
package com.jsowell.pile.mapper;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
import com.jsowell.pile.domain.DockingPlatformConfig;
|
import com.jsowell.pile.domain.DockingPlatformConfig;
|
||||||
|
import org.springframework.stereotype.Repository;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 对接平台配置信息Mapper接口
|
* 对接平台配置信息Mapper接口
|
||||||
*
|
*
|
||||||
* @author jsowell
|
* @author jsowell
|
||||||
* @date 2023-05-27
|
* @date 2023-05-27
|
||||||
*/
|
*/
|
||||||
public interface DockingPlatformConfigMapper
|
@Repository
|
||||||
{
|
public interface DockingPlatformConfigMapper {
|
||||||
/**
|
/**
|
||||||
* 查询对接平台配置信息
|
* 查询对接平台配置信息
|
||||||
*
|
*
|
||||||
* @param id 对接平台配置信息主键
|
* @param id 对接平台配置信息主键
|
||||||
* @return 对接平台配置信息
|
* @return 对接平台配置信息
|
||||||
*/
|
*/
|
||||||
@@ -21,7 +23,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 查询对接平台配置信息列表
|
* 查询对接平台配置信息列表
|
||||||
*
|
*
|
||||||
* @param dockingPlatformConfig 对接平台配置信息
|
* @param dockingPlatformConfig 对接平台配置信息
|
||||||
* @return 对接平台配置信息集合
|
* @return 对接平台配置信息集合
|
||||||
*/
|
*/
|
||||||
@@ -29,7 +31,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 新增对接平台配置信息
|
* 新增对接平台配置信息
|
||||||
*
|
*
|
||||||
* @param dockingPlatformConfig 对接平台配置信息
|
* @param dockingPlatformConfig 对接平台配置信息
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@@ -37,7 +39,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 修改对接平台配置信息
|
* 修改对接平台配置信息
|
||||||
*
|
*
|
||||||
* @param dockingPlatformConfig 对接平台配置信息
|
* @param dockingPlatformConfig 对接平台配置信息
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@@ -45,7 +47,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 删除对接平台配置信息
|
* 删除对接平台配置信息
|
||||||
*
|
*
|
||||||
* @param id 对接平台配置信息主键
|
* @param id 对接平台配置信息主键
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@@ -53,7 +55,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 批量删除对接平台配置信息
|
* 批量删除对接平台配置信息
|
||||||
*
|
*
|
||||||
* @param ids 需要删除的数据主键集合
|
* @param ids 需要删除的数据主键集合
|
||||||
* @return 结果
|
* @return 结果
|
||||||
*/
|
*/
|
||||||
@@ -61,6 +63,7 @@ public interface DockingPlatformConfigMapper
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* 通过operatorId查询配置信息
|
* 通过operatorId查询配置信息
|
||||||
|
*
|
||||||
* @param operatorId
|
* @param operatorId
|
||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user