| | |
| | | package com.ruoyi.system.domain.vo; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.ruoyi.common.annotation.ExcelDictFormat; |
| | | import com.ruoyi.common.convert.ExcelDictConvert; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | import java.util.Date; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 云存储配置视图对象 sys_oss_config |
| | | * |
| | | * @author ruoyi |
| | | * @date 2021-08-11 |
| | | * @author Lion Li |
| | | * @author 孤舟烟雨 |
| | | * @date 2021-08-13 |
| | | */ |
| | | @Data |
| | | @ApiModel("云存储配置视图对象") |
| | |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | | * 主建 |
| | | * 主建 |
| | | */ |
| | | @ApiModelProperty("主建") |
| | | private Integer ossConfigId; |
| | | private Long ossConfigId; |
| | | |
| | | /** |
| | | * 配置key |
| | |
| | | private String endpoint; |
| | | |
| | | /** |
| | | * 是否htpps(0否 1是) |
| | | * 是否https(Y=是,N=否) |
| | | */ |
| | | @ApiModelProperty("是否htpps(0否 1是)") |
| | | @ApiModelProperty("是否https(Y=是,N=否)") |
| | | private String isHttps; |
| | | |
| | | /** |
| | |
| | | private String region; |
| | | |
| | | /** |
| | | * 状态(0正常 1停用) |
| | | * 状态(0=正常,1=停用) |
| | | */ |
| | | @ApiModelProperty("状态(0正常 1停用)") |
| | | @ApiModelProperty("状态(0=正常,1=停用)") |
| | | private String status; |
| | | |
| | | /** |
| | |
| | | @ApiModelProperty("扩展字段") |
| | | private String ext1; |
| | | |
| | | /** |
| | | * 备注 |
| | | */ |
| | | @ApiModelProperty("备注") |
| | | private String remark; |
| | | |
| | | } |