2021-08-13 02:03:46 +00:00
|
|
|
|
package com.ruoyi.system.domain;
|
|
|
|
|
|
2021-10-31 21:28:19 +08:00
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
import com.ruoyi.common.core.domain.BaseEntity;
|
2021-08-13 02:03:46 +00:00
|
|
|
|
import lombok.Data;
|
2021-10-31 21:28:19 +08:00
|
|
|
|
import lombok.EqualsAndHashCode;
|
2021-08-13 02:03:46 +00:00
|
|
|
|
import lombok.experimental.Accessors;
|
|
|
|
|
|
|
|
|
|
/**
|
2021-09-10 10:51:40 +08:00
|
|
|
|
* 对象存储配置对象 sys_oss_config
|
2021-08-13 02:03:46 +00:00
|
|
|
|
*
|
2021-10-31 21:28:19 +08:00
|
|
|
|
* @author Lion Li
|
2021-08-13 02:03:46 +00:00
|
|
|
|
*/
|
|
|
|
|
@Data
|
2021-10-31 21:28:19 +08:00
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
2021-08-13 02:03:46 +00:00
|
|
|
|
@Accessors(chain = true)
|
|
|
|
|
@TableName("sys_oss_config")
|
2021-10-31 21:28:19 +08:00
|
|
|
|
public class SysOssConfig extends BaseEntity {
|
2021-08-13 02:03:46 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 主建
|
|
|
|
|
*/
|
|
|
|
|
@TableId(value = "oss_config_id")
|
2021-12-09 11:28:44 +08:00
|
|
|
|
private Long ossConfigId;
|
2021-08-13 02:03:46 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 配置key
|
|
|
|
|
*/
|
|
|
|
|
private String configKey;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* accessKey
|
|
|
|
|
*/
|
|
|
|
|
private String accessKey;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 秘钥
|
|
|
|
|
*/
|
|
|
|
|
private String secretKey;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 桶名称
|
|
|
|
|
*/
|
|
|
|
|
private String bucketName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 前缀
|
|
|
|
|
*/
|
|
|
|
|
private String prefix;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 访问站点
|
|
|
|
|
*/
|
|
|
|
|
private String endpoint;
|
|
|
|
|
|
|
|
|
|
/**
|
2021-08-13 12:37:34 +08:00
|
|
|
|
* 是否https(0否 1是)
|
2021-08-13 02:03:46 +00:00
|
|
|
|
*/
|
|
|
|
|
private String isHttps;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 域
|
|
|
|
|
*/
|
|
|
|
|
private String region;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 状态(0正常 1停用)
|
|
|
|
|
*/
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 扩展字段
|
|
|
|
|
*/
|
|
|
|
|
private String ext1;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 备注
|
|
|
|
|
*/
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
|
|
|
}
|