疯狂的狮子li
2022-01-13 a0bed51d966ab5d161d3fdd5423ba84f59fb60ff
ruoyi-oss/src/main/java/com/ruoyi/oss/properties/OssProperties.java
@@ -2,8 +2,6 @@
import lombok.Data;
import java.util.Date;
/**
 * OSS对象存储 配置属性
 *
@@ -12,44 +10,39 @@
@Data
public class OssProperties {
   /**
    * 域名
    */
   private String endpoint;
    /**
     * 域名
     */
    private String endpoint;
   /**
    * 前缀
    */
   private String prefix;
    /**
     * 前缀
     */
    private String prefix;
   /**
    * ACCESS_KEY
    */
   private String accessKey;
    /**
     * ACCESS_KEY
     */
    private String accessKey;
   /**
    * SECRET_KEY
    */
   private String secretKey;
    /**
     * SECRET_KEY
     */
    private String secretKey;
   /**
    * 存储空间名
    */
   private String bucketName;
    /**
     * 存储空间名
     */
    private String bucketName;
   /**
    * 存储区域
    */
   private String region;
    /**
     * 存储区域
     */
    private String region;
   /**
    * 是否https(Y=是,N=否)
    */
   private String isHttps;
   /**
    * 更新时间
    */
   private Date updateTime;
    /**
     * 是否https(Y=是,N=否)
     */
    private String isHttps;
}