FileAddressConstant.java 397 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package cn.timer.api.controller.disk.constant;

/**
 * 文件存储地址常量
 *
 * @author wuqingjun
 * @email 284718418@qq.com
 * @date 2022-04-02 11:05:49
 */
public class FileAddressConstant {
	/**
	 * aliyun-oss(阿里云OSS)
	 */
	public static final String ALIYUN_OSS = "aliyun-oss";

	/**
	 * physics-oss(物理机器OSS)
	 */
	public static final String PHYSICS_OSS = "physics-oss";

}