| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | | package com.ruoyi.storage.minio.domain.jsonbean; |  |   |  | import com.fasterxml.jackson.annotation.JsonProperty; |  | import lombok.Data; |  |   |  | /** |  |  * Auto-generated: 2023-08-05 11:37:3 |  |  * |  |  * @author www.jsons.cn |  |  * @website http://www.jsons.cn/json2java/ |  |  */ |  | @Data |  | public class Bucket { |  |     private String name; |  |     @JsonProperty("ownerIdentity") |  |     private Owneridentity owneridentity; |  |     private String arn; |  | } | 
 |