12345678910111213141516 |
- create table zhongzhi_input_record
- (
- id int auto_increment comment '主键id'
- primary key,
- req_type varchar(20) not null comment '请求业务类型',
- order_no varchar(64) null comment '三方订单号',
- req_body text null comment '请求body',
- create_time datetime default CURRENT_TIMESTAMP null comment '创建时间'
- )
- comment '中智回调异步通知记录';
- alter table sys_user
- add bank_name varchar(32) null comment '开户行';
- alter table sys_user_sub
- add bank_name varchar(64) null comment '开户行' after bank_phone;
|