mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-23 23:45:08 +08:00
1. 完善 PayNotifyServiceImpl 的单元测试
This commit is contained in:
@ -129,4 +129,18 @@ CREATE TABLE IF NOT EXISTS `pay_notify_task` (
|
||||
`deleted` bit(1) NOT NULL DEFAULT FALSE,
|
||||
`tenant_id` bigint(20) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT = '支付通知';
|
||||
) COMMENT = '支付通知任务';
|
||||
|
||||
CREATE TABLE IF NOT EXISTS `pay_notify_log` (
|
||||
"id" number NOT NULL GENERATED BY DEFAULT AS IDENTITY,
|
||||
`task_id` bigint(20) NOT NULL,
|
||||
`notify_times` int NOT NULL,
|
||||
`response` varchar(1024) NOT NULL,
|
||||
`status` tinyint(4) 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,
|
||||
PRIMARY KEY ("id")
|
||||
) COMMENT = '支付通知日志';
|
||||
|
Reference in New Issue
Block a user