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();
|
}
|
}
|