20240402.sql 650 B

123456789101112
  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. msg_method char(20) null comment '消息接口名称',
  8. order_status int null comment '订单状态',
  9. req_body text null comment '请求body',
  10. create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
  11. )
  12. comment '薪事易回调异步通知记录';