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
| package com.zbkj.common.vo;
|
| import lombok.Data;
|
| /**
| * 文件信息
|
| */
| @Data
| public class CloudVo {
|
| //域名空间
| private String domain;
|
| //accessKey
| private String accessKey;
|
| //secretKey
| private String secretKey;
|
| //bucketName
| private String bucketName;
|
| // //webPath web访问的url地址,云服务会自动创建相对应的文件夹
| // private String webPath;
| //
| // //服务器存储的文件绝对路径
| // private String filePath;
| //
| // //图片id
| // private Integer id;
|
| //节点
| private String region;
| }
|
|