build 1.0.1版本

This commit is contained in:
xxm1995
2023-07-28 15:58:12 +08:00
parent 7a53728982
commit 744fd094cd
7 changed files with 1840 additions and 1757 deletions

View File

@@ -4,7 +4,7 @@
<img src='https://gitee.com/bootx/bootx-platform/badge/star.svg?theme=dark' alt='star'/>
<img src="https://img.shields.io/badge/Boot%20Platform-1.3.2-success.svg" alt="Build Status"/>
<img src='https://gitee.com/bootx/dax-pay/badge/star.svg?theme=dark' alt='star'/>
<img src="https://img.shields.io/badge/Dax%20Pay-1.0.0-success.svg" alt="Build Status"/>
<img src="https://img.shields.io/badge/Dax%20Pay-1.0.1-success.svg" alt="Build Status"/>
<img src="https://img.shields.io/badge/Author-Bootx-orange.svg" alt="Build Status"/>
<img src="https://img.shields.io/badge/Spring%20Boot-2.7.x-blue.svg" alt="Downloads"/>
<img src="https://img.shields.io/badge/license-Apache%20License%202.0-green.svg"/>

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,15 @@
# CHANGELOG
## [v1.0.1] 支付之路: 多商户适配
- 新增: 钱包支持多商户和多应用
- 新增: 储值卡支持多商户和多应用
- 新增: 网关同步记录进行保存
- 新增: 钱包支持设置开通时的默认金额
- 新增: 储值卡多卡支付演示
- 优化: 结算台支持多商户
- 优化: 重构支付消息通知结构, 使后期支持多种消息中间件
- 优化: 拆分网关同步相关代码
- 优化: 保存各通道的支付单
## [v1.0.0] 支付之路
- 支持单通道支付、聚合支付、组合支付、退款功能
- 单通道支付:支持支付宝、微信、现金、钱包、储值卡等多种支付方式

View File

@@ -12,6 +12,7 @@
1.0.2
- 微信V3支付接口
- 支付超时逻辑重构
- 支付单增加类型记录, 如是否单通道支付/单通道支付类型等信息
- 各种子支付单记录商户号和应用号等信息, 后期进行统计时使用
- 增加手续费配置管理
- 各种支付方式配置可以记录手续费比例, 支持简易模式和关联支付配置模式

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-dax-pay</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
<artifactId>dax-pay</artifactId>

View File

@@ -6,7 +6,7 @@
<parent>
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-dax-pay</artifactId>
<version>1.0.0</version>
<version>1.0.1</version>
</parent>
<artifactId>dax-start</artifactId>

View File

@@ -15,7 +15,7 @@
<groupId>cn.bootx.platform</groupId>
<artifactId>bootx-dax-pay</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version>
<version>1.0.1</version>
<modules>
<module>dax-pay</module>
@@ -29,7 +29,7 @@
<!-- 二方库版本 -->
<bootx-platform.version>1.3.2</bootx-platform.version>
<dax.version>1.0.0</dax.version>
<dax.version>1.0.1</dax.version>
<!-- 三方库 -->
<slf4j.version>1.7.30</slf4j.version>
<!-- 3.5.3 有bug -->