230725.sql 491 B

12345678910
  1. create table qifu_input_record
  2. (
  3. id int auto_increment comment '主键id'
  4. primary key,
  5. req_msg_id varchar(64) null comment '报文流水号',
  6. req_body text null comment '请求body',
  7. decrypt_body text null comment '解密后的body',
  8. create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
  9. )
  10. comment '福建企赋回调异步通知记录';