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