123456789101112 |
- create table xinshiyi_input_record
- (
- id int auto_increment comment '主键id'
- primary key,
- req_id varchar(64) null comment '请求序号',
- batch_id varchar(64) null comment '批次号',
- msg_method char(20) null comment '消息接口名称',
- order_status int null comment '订单状态',
- req_body text null comment '请求body',
- create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
- )
- comment '薪事易回调异步通知记录';
|