mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-04 03:30:36 +00:00
fix 删除无用的SQL字段
This commit is contained in:
@@ -2598,7 +2598,6 @@ CREATE TABLE `pay_callback_record` (
|
||||
`callback_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '回调类型',
|
||||
`notify_info` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '通知消息',
|
||||
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '回调处理状态',
|
||||
`repair_order_no` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '修复号',
|
||||
`error_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '错误码',
|
||||
`error_msg` varchar(2048) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL COMMENT '错误信息',
|
||||
`creator` bigint(20) NULL DEFAULT NULL COMMENT '创建者ID',
|
||||
|
@@ -3542,7 +3542,6 @@ create table pay_callback_record
|
||||
callback_type varchar(255),
|
||||
notify_info text,
|
||||
status varchar(255),
|
||||
repair_order_no varchar(255),
|
||||
error_code varchar(255),
|
||||
creator bigint,
|
||||
create_time timestamp(6),
|
||||
|
@@ -41,9 +41,9 @@ public class PayOrderTest {
|
||||
param.setBizOrderNo("SDK_"+ System.currentTimeMillis());
|
||||
param.setTitle("测试接口支付");
|
||||
param.setDescription("这是支付备注");
|
||||
param.setAmount(1001111);
|
||||
param.setChannel(PayChannelEnum.UNION_PAY.getCode());
|
||||
param.setMethod(PayMethodEnum.QRCODE.getCode());
|
||||
param.setAmount(1011);
|
||||
param.setChannel(PayChannelEnum.ALI.getCode());
|
||||
param.setMethod(PayMethodEnum.WAP.getCode());
|
||||
param.setAttach("{回调参数}");
|
||||
param.setAllocation(false);
|
||||
param.setReturnUrl("https://abc.com/returnurl");
|
||||
|
@@ -41,16 +41,6 @@ spring:
|
||||
auto-startup: true
|
||||
#启动时更新己存在的Job
|
||||
overwrite-existing-jobs: true
|
||||
properties:
|
||||
org:
|
||||
quartz:
|
||||
scheduler:
|
||||
instanceName: quartzScheduler
|
||||
instanceId: AUTO
|
||||
threadPool:
|
||||
threadCount: 10
|
||||
threadPriority: 5
|
||||
threadsInheritContextClassLoaderOfInitializingThread: true
|
||||
# swagger openapi 接口文档配置
|
||||
springdoc:
|
||||
# 自动展开参数
|
||||
@@ -60,12 +50,12 @@ logging:
|
||||
level:
|
||||
cn.daxpay.**: debug
|
||||
org.springframework.jdbc.core: debug
|
||||
|
||||
# 项目配置
|
||||
bootx:
|
||||
common:
|
||||
# 接口文档
|
||||
swagger:
|
||||
enabled: true
|
||||
author: bootx
|
||||
version: 2.0.8
|
||||
title: 开源支付平台-单商户
|
||||
|
Reference in New Issue
Block a user