| | |
| | | import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serial; |
| | | import java.io.Serializable; |
| | | |
| | | |
| | | /** |
| | | * 对象存储配置视图对象 sys_oss_config |
| | |
| | | */ |
| | | @Data |
| | | @ExcelIgnoreUnannotated |
| | | public class SysOssConfigVo { |
| | | public class SysOssConfigVo implements Serializable { |
| | | |
| | | @Serial |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | /** |
| | |
| | | private String region; |
| | | |
| | | /** |
| | | * 状态(0=正常,1=停用) |
| | | * 是否默认(0=是,1=否) |
| | | */ |
| | | private String status; |
| | | |
| | |
| | | */ |
| | | private String remark; |
| | | |
| | | /** |
| | | * 桶权限类型(0private 1public 2custom) |
| | | */ |
| | | private String accessPolicy; |
| | | |
| | | } |