xiejun
2024-08-27 ca3880ac5dde98928d6ae0d0c66a0e53c4cbc6c7
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package com.vci.pagemodel;
 
import com.vci.starter.web.pagemodel.BaseModelVO;
 
/**
 * @author ludc
 * @date 2024/7/16 14:22
 */
public class VciFileVolumeVO extends BaseModelVO {
    private static final long serialVersionUID = -8705455753001336641L;
    private String id;
    private String name;
    private String description;
    private String volumePath;
    private String serviceOsType;
    private String serviceOsTypeText;
    private String transProtocol;
    private String transProtocolText;
    private String serviceUrl;
    private String transUser;
    private String transUserPwd;
    private String maxVolume;
    private String currentVolume;
    private String lastSyncTimeLong;
 
    public VciFileVolumeVO() {
    }
 
    public String getId() {
        return this.id;
    }
 
    public void setId(String id) {
        this.id = id;
    }
 
    public String getName() {
        return this.name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getDescription() {
        return this.description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getVolumePath() {
        return this.volumePath;
    }
 
    public void setVolumePath(String volumePath) {
        this.volumePath = volumePath;
    }
 
    public String getServiceOsType() {
        return this.serviceOsType;
    }
 
    public void setServiceOsType(String serviceOsType) {
        this.serviceOsType = serviceOsType;
    }
 
    public String getTransProtocol() {
        return this.transProtocol;
    }
 
    public void setTransProtocol(String transProtocol) {
        this.transProtocol = transProtocol;
    }
 
    public String getTransProtocolText() {
        return this.transProtocolText;
    }
 
    public void setTransProtocolText(String transProtocolText) {
        this.transProtocolText = transProtocolText;
    }
 
    public String getServiceUrl() {
        return this.serviceUrl;
    }
 
    public void setServiceUrl(String serviceUrl) {
        this.serviceUrl = serviceUrl;
    }
 
    public String getTransUser() {
        return this.transUser;
    }
 
    public void setTransUser(String transUser) {
        this.transUser = transUser;
    }
 
    public String getTransUserPwd() {
        return this.transUserPwd;
    }
 
    public void setTransUserPwd(String transUserPwd) {
        this.transUserPwd = transUserPwd;
    }
 
    public String getMaxVolume() {
        return this.maxVolume;
    }
 
    public void setMaxVolume(String maxVolume) {
        this.maxVolume = maxVolume;
    }
 
    public String getCurrentVolume() {
        return this.currentVolume;
    }
 
    public void setCurrentVolume(String currentVolume) {
        this.currentVolume = currentVolume;
    }
 
    public String getLastSyncTimeLong() {
        return this.lastSyncTimeLong;
    }
 
    public void setLastSyncTimeLong(String lastSyncTimeLong) {
        this.lastSyncTimeLong = lastSyncTimeLong;
    }
 
    public String getServiceOsTypeText() {
        return this.serviceOsTypeText;
    }
 
    public void setServiceOsTypeText(String serviceOsTypeText) {
        this.serviceOsTypeText = serviceOsTypeText;
    }
 
    public String toString() {
        return "VciFileVolumeVO{id='" + this.id + '\'' + ", name='" + this.name + '\'' + ", description='" + this.description + '\'' + ", volumePath='" + this.volumePath + '\'' + ", serviceOsType='" + this.serviceOsType + '\'' + ", serviceOsTypeText='" + this.serviceOsTypeText + '\'' + ", transProtocol='" + this.transProtocol + '\'' + ", transProtocolText='" + this.transProtocolText + '\'' + ", serviceUrl='" + this.serviceUrl + '\'' + ", transUser='" + this.transUser + '\'' + ", transUserPwd='" + this.transUserPwd + '\'' + ", maxVolume='" + this.maxVolume + '\'' + ", currentVolume='" + this.currentVolume + '\'' + ", lastSyncTimeLong='" + this.lastSyncTimeLong + '\'' + "} " + super.toString();
    }
}