| | |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.ruoyi.common.core.domain.BaseEntity; |
| | | import com.ruoyi.common.core.web.domain.BaseEntity; |
| | | import lombok.Data; |
| | | import lombok.EqualsAndHashCode; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | /** |
| | | * 对象存储配置对象 sys_oss_config |
| | |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = true) |
| | | @Accessors(chain = true) |
| | | @TableName("sys_oss_config") |
| | | public class SysOssConfig extends BaseEntity { |
| | | |
| | |
| | | * 主建 |
| | | */ |
| | | @TableId(value = "oss_config_id") |
| | | private Integer ossConfigId; |
| | | private Long ossConfigId; |
| | | |
| | | /** |
| | | * 配置key |
| | |
| | | private String endpoint; |
| | | |
| | | /** |
| | | * 自定义域名 |
| | | */ |
| | | private String domain; |
| | | |
| | | /** |
| | | * 是否https(0否 1是) |
| | | */ |
| | | private String isHttps; |
| | |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 桶权限类型(0private 1public 2custom) |
| | | */ |
| | | private String accessPolicy; |
| | | } |