12345678910111213 |
- -- 额度申请记录文件信息 t_credit_apply_userfile
- create table t_credit_apply_userfile(
- id int not null auto_increment comment 'id',
- code varchar(10) not null comment '额度申请用户文件编号',
- credit_apply_code varchar(10) not null default '' comment '额度申请记录编号',
- file_type_code varchar(10) not null default '' comment '文件类型编号',
- url varchar(255) not null default '' comment '文件全路径',
- number smallint not null default 0 comment '序号',
- create_time timestamp not null default current_timestamp comment '创建时间',
- update_time timestamp not null default current_timestamp on update current_timestamp comment '更新时间',
- primary key(id) comment '主键,没有重复',
- unique index(code) comment '额度申请用户文件编号,唯一索引'
- )ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT '额度申请记录文件信息';
|