221027.sql 589 B

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