20240402.sql 562 B

1234567891011
  1. create table xinshiyi_input_record
  2. (
  3. id int auto_increment comment '主键id'
  4. primary key,
  5. req_id varchar(64) null comment '请求序号',
  6. batch_id varchar(64) null comment '批次号',
  7. order_status int null comment '订单状态',
  8. req_body text null comment '请求body',
  9. create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
  10. )
  11. comment '薪事易回调异步通知记录';