Browse Source

docs: 浪潮回调接口记录sql

lixuesong 2 years ago
parent
commit
68e25b79b6
1 changed files with 13 additions and 0 deletions
  1. 13 0
      db/v2.0/221027.sql

+ 13 - 0
db/v2.0/221027.sql

@@ -0,0 +1,13 @@
+create table if not exists lingcaiai_input_record
+(
+    id int auto_increment comment '主键id'
+        primary key,
+    verify varchar(128) not null comment '签名',
+    channel varchar(32) not null comment '通知类型',
+    req_body text not null comment '请求body内容',
+    batch_no varchar(32) null comment '项目单号',
+    account_no varchar(32) null comment '账号单号',
+    order_status int null comment '订单状态',
+    create_time timestamp default CURRENT_TIMESTAMP not null comment '创建时间'
+)
+    comment '浪潮(灵才接好活)结算回调请求记录';