huangcm
2025-04-09 02d4ce54b909bd733f12e9f3fa4c1b03cf2d6f45
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.DeviceTest.helper;
 
public class StorageInfo {
    private String path;
    private String sysPath;
 
    public StorageInfo(String path, String sysPath) {
        this.path = path;
        this.sysPath = sysPath;
    }
 
    public String getPath() {
        return path;
    }
 
    public void setPath(String path) {
        this.path = path;
    }
 
    public String getSysPath() {
        return sysPath;
    }
 
    public void setSysPath(String sysPath) {
        this.sysPath = sysPath;
    }
 
    @Override
    public String toString() {
        return "StorageInfo{" +
                "path='" + path + '\'' +
                ", sysPath='" + sysPath + '\'' +
                '}';
    }
}