code review 支付的逻辑

This commit is contained in:
YunaiV
2021-11-21 21:11:07 +08:00
parent 6069a387ea
commit f0fcf4798e
7 changed files with 24 additions and 19 deletions

View File

@ -479,7 +479,7 @@ CREATE TABLE IF NOT EXISTS "pay_app" (
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
"deleted" bit(1) NOT NULL DEFAULT FALSE,
PRIMARY KEY ("id")
) COMMENT = '支付应用信息';
) COMMENT = '支付应用信息';
CREATE TABLE "pay_channel" (
"id" number NOT NULL GENERATED BY DEFAULT AS IDENTITY,
@ -496,5 +496,5 @@ CREATE TABLE "pay_channel" (
"update_time" datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
"deleted" bit(1) NOT NULL DEFAULT FALSE,
PRIMARY KEY ("id")
)COMMENT = '支付渠道';
) COMMENT = '支付渠道';