12345678910111213 |
- create table if not exists lingcaiai_input_record
- (
- id int auto_increment comment '主键id'
- primary key,
- verify varchar(128) not null comment '签名',
- channel varchar(32) not null comment '通知类型',
- req_body text not null comment '请求body内容',
- batch_no varchar(32) null comment '项目单号',
- account_no varchar(32) null comment '账号单号',
- order_status int null comment '订单状态',
- create_time timestamp default CURRENT_TIMESTAMP not null comment '创建时间'
- )
- comment '浪潮(灵才接好活)结算回调请求记录';
|