mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
by gateway:
1. notify 部分单元测试
This commit is contained in:
@ -109,3 +109,24 @@ CREATE TABLE IF NOT EXISTS `pay_refund` (
|
||||
`deleted` bit(1) NOT NULL DEFAULT FALSE,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT = '退款订单';
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pay_notify_task` (
|
||||
"id" number NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
||||
`app_id` bigint(20) NOT NULL,
|
||||
`type` tinyint(4) NOT NULL,
|
||||
`data_id` bigint(20) NOT NULL,
|
||||
`merchant_order_id` varchar(64) NOT NULL,
|
||||
`status` tinyint(4) NOT NULL,
|
||||
`next_notify_time` datetime(0) NULL DEFAULT NULL,
|
||||
`last_execute_time` datetime(0) NULL DEFAULT NULL,
|
||||
`notify_times` int NOT NULL,
|
||||
`max_notify_times` int NOT NULL,
|
||||
`notify_url` varchar(1024) NOT NULL,
|
||||
`creator` varchar(64) NULL DEFAULT '',
|
||||
`create_time` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`updater` varchar(64) NULL DEFAULT '',
|
||||
`update_time` datetime(0) NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
`deleted` bit(1) NOT NULL DEFAULT FALSE,
|
||||
`tenant_id` bigint(20) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT = '支付通知';
|
||||
|
Reference in New Issue
Block a user