mirror of
https://gitee.com/dromara/dax-pay
synced 2026-08-11 23:25:33 +08:00
build 版本号升级和数据脚本更新
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
<p>
|
||||
<img src='https://gitee.com/bootx/dax-pay/badge/star.svg?theme=dark' alt='star'/>
|
||||
<img src="https://img.shields.io/badge/Dax%20Pay-2.0.1-success.svg" alt="Build Status"/>
|
||||
<img src="https://img.shields.io/badge/Dax%20Pay-2.0.2-success.svg" alt="Build Status"/>
|
||||
<img src="https://img.shields.io/badge/Boot%20Platform-1.3.6-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.18-blue.svg" alt="Downloads"/>
|
||||
|
||||
@@ -62,6 +62,14 @@ INSERT INTO `iam_role_path`(`id`, `role_id`, `permission_id`) VALUES (1764931648
|
||||
|
||||
INSERT INTO `iam_role_path`(`id`, `role_id`, `permission_id`) VALUES (1764931648924622852, 1757297023118462976, 1764663810424303616);
|
||||
|
||||
INSERT INTO `iam_role_menu`(`id`, `role_id`, `client_code`, `permission_id`) VALUES (1764945575888781312, 1757297023118462976, 'dax-pay', 1764638353289027584);
|
||||
|
||||
INSERT INTO `iam_role_menu`(`id`, `role_id`, `client_code`, `permission_id`) VALUES (1764945575888781313, 1757297023118462976, 'dax-pay', 1764638678821543936);
|
||||
|
||||
INSERT INTO `iam_role_menu`(`id`, `role_id`, `client_code`, `permission_id`) VALUES (1764945576350154752, 1757298887092326400, 'dax-pay', 1764638353289027584);
|
||||
|
||||
INSERT INTO `iam_role_menu`(`id`, `role_id`, `client_code`, `permission_id`) VALUES (1764945576350154753, 1757298887092326400, 'dax-pay', 1764638678821543936);
|
||||
|
||||
INSERT INTO `starter_quartz_job`(`id`, `name`, `job_class_name`, `cron`, `parameter`, `state`, `remark`, `creator`, `create_time`, `last_modifier`, `last_modified_time`, `version`, `deleted`) VALUES (1764664552203743232, '支付宝定时对账', 'cn.bootx.platform.daxpay.service.task.ReconcileTask', '* * 11 * * ? *', '{\"channel\":\"ali_pay\",\"n\":1}', 0, '', 1399985191002447872, '2024-03-04 22:49:50', 1399985191002447872, '2024-03-04 22:49:50', 0, 0);
|
||||
|
||||
INSERT INTO `starter_quartz_job`(`id`, `name`, `job_class_name`, `cron`, `parameter`, `state`, `remark`, `creator`, `create_time`, `last_modifier`, `last_modified_time`, `version`, `deleted`) VALUES (1764667388106887168, '微信支付定时对账', 'cn.bootx.platform.daxpay.service.task.ReconcileTask', '* * 11 * * ? *', '{\"channel\":\"wechat_pay\",\"n\":1}', 0, '', 1399985191002447872, '2024-03-04 23:01:06', 1399985191002447872, '2024-03-04 23:01:06', 0, 0);
|
||||
|
||||
@@ -1521,6 +1521,10 @@ CREATE TABLE `iam_role_menu` (
|
||||
-- ----------------------------
|
||||
-- Records of iam_role_menu
|
||||
-- ----------------------------
|
||||
INSERT INTO `iam_role_menu` VALUES (1764945575888781312, 1757297023118462976, 'dax-pay', 1764638353289027584);
|
||||
INSERT INTO `iam_role_menu` VALUES (1764945575888781313, 1757297023118462976, 'dax-pay', 1764638678821543936);
|
||||
INSERT INTO `iam_role_menu` VALUES (1764945576350154752, 1757298887092326400, 'dax-pay', 1764638353289027584);
|
||||
INSERT INTO `iam_role_menu` VALUES (1764945576350154753, 1757298887092326400, 'dax-pay', 1764638678821543936);
|
||||
INSERT INTO `iam_role_menu` VALUES (1757298674730520576, 1757297023118462976, 'dax-pay', 1744271715476684800);
|
||||
INSERT INTO `iam_role_menu` VALUES (1757298674730520577, 1757297023118462976, 'dax-pay', 1744642856348520448);
|
||||
INSERT INTO `iam_role_menu` VALUES (1757298674730520578, 1757297023118462976, 'dax-pay', 1745457623493496832);
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
# CHANGELOG
|
||||
## [v2.0.2]
|
||||
- 增加微信支付对账功能
|
||||
- 增加支付宝支付对账功能
|
||||
- 优化: 修复策略对订单时间和状态字段的变更优化
|
||||
- fix: 前端支付订单查询条件中"支付ID"条件不生效
|
||||
|
||||
|
||||
## [v2.0.1]
|
||||
- 增加支付、退款时客户通知功能,支持多次重发
|
||||
- 开源文档增加支付通知和退款通知文档
|
||||
@@ -24,7 +25,7 @@
|
||||
- fix: 修复简单退款选择全部退款时报错问题
|
||||
- fix: 修复退款时未检验退款金额问题,导致可以退款余额可以大于可退余额
|
||||
|
||||
## [v2.0.1]
|
||||
## [v2.0.2]
|
||||
- 支持支付宝支付: 扫码支付、付款码支付、PC支付、H5支付
|
||||
- 支持微信支付: 扫码支付、WAP支付、公众号支付
|
||||
- 增加聚合支付演示功能,支持支付宝和微信支付
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>dax-pay</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-demo</artifactId>
|
||||
@@ -36,7 +36,7 @@
|
||||
<dependency>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single-sdk</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single-sdk</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<!-- 项目信息 -->
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-admin</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-core</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-gateway</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-service</artifactId>
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single-start</artifactId>
|
||||
|
||||
@@ -65,7 +65,7 @@ bootx:
|
||||
swagger:
|
||||
enabled: true
|
||||
author: bootx
|
||||
version: 2.0.1
|
||||
version: 2.0.2
|
||||
title: 开源支付平台-单商户
|
||||
description: 开源支付平台-单商户版
|
||||
# 多模块扫码
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<parent>
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>dax-pay</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
</parent>
|
||||
|
||||
<artifactId>daxpay-single</artifactId>
|
||||
|
||||
4
pom.xml
4
pom.xml
@@ -15,7 +15,7 @@
|
||||
<groupId>cn.bootx.platform</groupId>
|
||||
<artifactId>dax-pay</artifactId>
|
||||
<packaging>pom</packaging>
|
||||
<version>2.0.1</version>
|
||||
<version>2.0.2</version>
|
||||
|
||||
<modules>
|
||||
<module>daxpay-single</module>
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
<!-- 二方库版本 -->
|
||||
<bootx-platform.version>1.3.6.2</bootx-platform.version>
|
||||
<daxpay.version>2.0.1</daxpay.version>
|
||||
<daxpay.version>2.0.2</daxpay.version>
|
||||
<!-- 三方库 -->
|
||||
<slf4j.version>1.7.30</slf4j.version>
|
||||
<redisson.version>3.16.8</redisson.version>
|
||||
|
||||
Reference in New Issue
Block a user