12345678910111213141516 |
- -- 汇企云回调异步通知记录
- create table huiqiyun_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 '汇企云回调异步通知记录';
- -- deptSub新增字段
- alter table sys_dept_sub
- add path_no varchar(128) null comment '汇企云批次付款渠道编号' after subject_invoice_category;
|