唐耀东
2021-12-09 eeeddf0836a5a5aa03a3342d34318c7202313e93
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
package com.ruoyi.system.domain.vo;
 
import com.alibaba.excel.annotation.ExcelIgnoreUnannotated;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
 
/**
 * 对象存储配置视图对象 sys_oss_config
 *
 * @author Lion Li
 * @author 孤舟烟雨
 * @date 2021-08-13
 */
@Data
@ApiModel("对象存储配置视图对象")
@ExcelIgnoreUnannotated
public class SysOssConfigVo {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主建
     */
    @ApiModelProperty("主建")
    private Long ossConfigId;
 
    /**
     * 配置key
     */
    @ApiModelProperty("配置key")
    private String configKey;
 
    /**
     * accessKey
     */
    @ApiModelProperty("accessKey")
    private String accessKey;
 
    /**
     * 秘钥
     */
    @ApiModelProperty("secretKey")
    private String secretKey;
 
    /**
     * 桶名称
     */
    @ApiModelProperty("桶名称")
    private String bucketName;
 
    /**
     * 前缀
     */
    @ApiModelProperty("前缀")
    private String prefix;
 
    /**
     * 访问站点
     */
    @ApiModelProperty("访问站点")
    private String endpoint;
 
    /**
     * 是否https(Y=是,N=否)
     */
    @ApiModelProperty("是否https(Y=是,N=否)")
    private String isHttps;
 
    /**
     * 域
     */
    @ApiModelProperty("域")
    private String region;
 
    /**
     * 状态(0=正常,1=停用)
     */
    @ApiModelProperty("状态(0=正常,1=停用)")
    private String status;
 
    /**
     * 扩展字段
     */
    @ApiModelProperty("扩展字段")
    private String ext1;
 
    /**
     * 备注
     */
    @ApiModelProperty("备注")
    private String remark;
 
}