xm
2024-06-14 722af26bc6fec32bb289b1df51a9016a4935610f
提交 | 用户 | 时间
722af2 1 package com.dl.system.domain;
X 2
3 import com.baomidou.mybatisplus.annotation.TableId;
4 import com.baomidou.mybatisplus.annotation.TableName;
5 import com.dl.common.core.domain.BaseEntity;
6 import lombok.Data;
7 import lombok.EqualsAndHashCode;
8
9 /**
10  * 对象存储配置对象 sys_oss_config
11  *
12  * @author Lion Li
13  */
14 @Data
15 @EqualsAndHashCode(callSuper = true)
16 @TableName("sys_oss_config")
17 public class SysOssConfig extends BaseEntity {
18
19     /**
20      * 主建
21      */
22     @TableId(value = "oss_config_id")
23     private Long ossConfigId;
24
25     /**
26      * 配置key
27      */
28     private String configKey;
29
30     /**
31      * accessKey
32      */
33     private String accessKey;
34
35     /**
36      * 秘钥
37      */
38     private String secretKey;
39
40     /**
41      * 桶名称
42      */
43     private String bucketName;
44
45     /**
46      * 前缀
47      */
48     private String prefix;
49
50     /**
51      * 访问站点
52      */
53     private String endpoint;
54
55     /**
56      * 自定义域名
57      */
58     private String domain;
59
60     /**
61      * 是否https(0否 1是)
62      */
63     private String isHttps;
64
65     /**
66      * 域
67      */
68     private String region;
69
70     /**
71      * 是否默认(0=是,1=否)
72      */
73     private String status;
74
75     /**
76      * 扩展字段
77      */
78     private String ext1;
79
80     /**
81      * 备注
82      */
83     private String remark;
84
85     /**
86      * 桶权限类型(0private 1public 2custom)
87      */
88     private String accessPolicy;
89 }