update 编写 Minio 实现 调整OSS模块结构

This commit is contained in:
疯狂的狮子li
2021-07-19 19:40:18 +08:00
parent 3aaf4e2384
commit 0a128e454c
17 changed files with 311 additions and 56 deletions

View File

@ -5,12 +5,13 @@ drop table if exists sys_oss;
create table sys_oss (
oss_id bigint(20) not null auto_increment comment '云存储主键',
file_name varchar(64) not null default '' comment '文件名',
original_name varchar(64) not null default '' comment '原名',
file_suffix varchar(10) not null default '' comment '文件后缀名',
url varchar(200) not null comment 'URL地址',
create_time datetime default null comment '创建时间',
create_by varchar(64) not null default '' comment '上传人',
create_by varchar(64) default '' comment '上传人',
update_time datetime default null comment '更新时间',
update_by varchar(64) not null default '' comment '更新人',
update_by varchar(64) default '' comment '更新人',
service varchar(10) not null default 'minio' comment '服务商',
primary key (oss_id)
) engine=innodb comment ='OSS云存储表';