🎨 文件存储类型枚举

This commit is contained in:
b2baccline
2020-05-21 16:58:37 +08:00
parent 75e5ecae93
commit 5095c9f536

View File

@@ -0,0 +1,21 @@
package com.hccake.ballcat.commom.storage;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author Hccake
* @version 1.0
* @date 2020/5/21 15:13
* 文件存储类型枚举
* 暂时只写了阿里云的实现
*/
@Getter
@AllArgsConstructor
public enum FileStorageTypeEnum {
/**
* 阿里云
*/
ALIYUN
}