2025-07-17 18:07:48 +08:00
|
|
|
|
package com.klp.system.domain;
|
2021-12-21 10:15:12 +08:00
|
|
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
2025-07-17 18:07:48 +08:00
|
|
|
|
import com.klp.common.core.domain.BaseEntity;
|
2021-12-21 10:15:12 +08:00
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 对象存储配置对象 sys_oss_config
|
|
|
|
|
|
*
|
|
|
|
|
|
* @author Lion Li
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@EqualsAndHashCode(callSuper = true)
|
|
|
|
|
|
@TableName("sys_oss_config")
|
|
|
|
|
|
public class SysOssConfig extends BaseEntity {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 主建
|
|
|
|
|
|
*/
|
|
|
|
|
|
@TableId(value = "oss_config_id")
|
2022-01-08 15:42:53 +00:00
|
|
|
|
private Long ossConfigId;
|
2021-12-21 10:15:12 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 配置key
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String configKey;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* accessKey
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String accessKey;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 秘钥
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String secretKey;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 桶名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String bucketName;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 前缀
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String prefix;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 访问站点
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String endpoint;
|
|
|
|
|
|
|
2022-07-05 23:40:47 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 自定义域名
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String domain;
|
|
|
|
|
|
|
2021-12-21 10:15:12 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 是否https(0否 1是)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String isHttps;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 域
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String region;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2023-03-19 22:08:25 +08:00
|
|
|
|
* 是否默认(0=是,1=否)
|
2021-12-21 10:15:12 +08:00
|
|
|
|
*/
|
|
|
|
|
|
private String status;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 扩展字段
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String ext1;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 备注
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String remark;
|
|
|
|
|
|
|
2023-01-07 16:51:51 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 桶权限类型(0private 1public 2custom)
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String accessPolicy;
|
2021-12-21 10:15:12 +08:00
|
|
|
|
}
|