1
13693261870
2022-09-16 fee60c3e25fac0982f3b8cb8feea7225c4ed22f8
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
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 +
                '}';
    }
}