package com.terra.proxy.bean;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
|
public class ServerExcelResultEntity {
|
|
@ExcelProperty(value = "服务地址", index = 0)
|
private String serverUrl;
|
|
@ExcelProperty(value = "服务名称", index = 1)
|
private String serverName;
|
|
@ExcelProperty(value = "是否公开(默认否)", index = 2)
|
private String publiceIs;
|
|
@ExcelProperty(value = "是否申请token(默认是)", index = 3)
|
private String useToken;
|
|
@ExcelProperty(value = "token申请时间(s)", index = 4)
|
private Long time;
|
|
@ExcelProperty(value = "申请系统(浙江/广东)", index = 5)
|
private String applySys;
|
|
@ExcelProperty(value = "是否自动续约(默认否)", index = 6)
|
private String autoToken;
|
|
@ExcelProperty(value = "资源ID", index = 7)
|
private Integer zyId;
|
|
@ExcelProperty(value = "token", index = 8)
|
private String token;
|
|
@ExcelProperty(value = "代理地址", index = 9)
|
private String proxyurl;
|
|
public String getServerUrl() {
|
return serverUrl;
|
}
|
|
public void setServerUrl(String serverUrl) {
|
this.serverUrl = serverUrl;
|
}
|
|
public String getPubliceIs() {
|
return publiceIs;
|
}
|
|
public void setPubliceIs(String publiceIs) {
|
this.publiceIs = publiceIs;
|
}
|
|
public String getUseToken() {
|
return useToken;
|
}
|
|
public void setUseToken(String useToken) {
|
this.useToken = useToken;
|
}
|
|
public String getApplySys() {
|
return applySys;
|
}
|
|
public void setApplySys(String applySys) {
|
this.applySys = applySys;
|
}
|
|
public String getAutoToken() {
|
return autoToken;
|
}
|
|
public void setAutoToken(String autoToken) {
|
this.autoToken = autoToken;
|
}
|
|
|
public Long getTime() {
|
return time;
|
}
|
|
public void setTime(Long time) {
|
this.time = time;
|
}
|
|
public ServerExcelResultEntity() {
|
}
|
|
public String getServerName() {
|
return serverName;
|
}
|
|
public void setServerName(String serverName) {
|
this.serverName = serverName;
|
}
|
|
public String getProxyurl() {
|
return proxyurl;
|
}
|
|
public void setProxyurl(String proxyurl) {
|
this.proxyurl = proxyurl;
|
}
|
|
public String getToken() {
|
return token;
|
}
|
|
public void setToken(String token) {
|
this.token = token;
|
}
|
|
public Integer getZyId() {
|
return zyId;
|
}
|
|
public void setZyId(Integer zyId) {
|
this.zyId = zyId;
|
}
|
|
@Override
|
public String toString() {
|
return "ServerExcelResultEntity{" +
|
"serverUrl='" + serverUrl + '\'' +
|
", serverName='" + serverName + '\'' +
|
", useToken='" + useToken + '\'' +
|
", time=" + time +
|
", applySys='" + applySys + '\'' +
|
", autoToken='" + autoToken + '\'' +
|
", publiceIs='" + publiceIs + '\'' +
|
", proxyurl='" + proxyurl + '\'' +
|
", token='" + token + '\'' +
|
", zyId=" + zyId +
|
'}';
|
}
|
}
|