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
| package com.dji.sdk.cloudapi.device;
|
| /**
| * @author sean
| * @version 1.0
| * @date 2022/5/11
| */
| public class Storage {
|
| private Long total;
|
| private Long used;
|
| public Storage() {
| }
|
| @Override
| public String toString() {
| return "Storage{" +
| "total=" + total +
| ", used=" + used +
| '}';
| }
|
| public Long getTotal() {
| return total;
| }
|
| public Storage setTotal(Long total) {
| this.total = total;
| return this;
| }
|
| public Long getUsed() {
| return used;
| }
|
| public Storage setUsed(Long used) {
| this.used = used;
| return this;
| }
| }
|
|