ludc
2025-01-16 986aa62ed00bee39363bab41b4eeb8259d446efd
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.vci.client.framework.systemConfig.volumn.object;
 
public class PvolumeObject {
   private String id; //卷id
   private String name; //卷名称
   private String host;//卷服务ip
   private String service; // 服务名
   private short type; //卷服务类型
   private String path; //卷服务路径
   private boolean isvalid; //是否为首选路径
   
   
public String getId() {
    return id;
}
public void setId(String id) {
    this.id = id;
}
public String getName() {
    return name;
}
public void setName(String name) {
    this.name = name;
}
public String getHost() {
    return host;
}
public void setHost(String host) {
    this.host = host;
}
 
public String getService() {
    return service;
}
public void setService(String service) {
    this.service = service;
}
 
public short getType() {
    return type;
}
public void setType(short type) {
    this.type = type;
}
public String getPath() {
    return path;
}
public void setPath(String path) {
    this.path = path;
}
public boolean getIsvalid() {
    return isvalid;
}
public void setIsvalid(boolean isvalid) {
    this.isvalid = isvalid;
}
   
   
}