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
package com.terra.proxy.bean;
 
public class ServerRgBean {
    
    private  Integer id;
    
    private  String serverurl;
   
    private  Integer resourceid;
    
    private  Integer ispublic;
    
    private Integer   urlid;
    
    private  String   contextpath;
    
    private Integer suffix;
 
    private String servername;
 
    private  String   fromsys;
    
    private  Integer enable;
 
    public ServerRgBean() {
    }
 
    public ServerRgBean(String serverurl, Integer resourceid, Integer ispublic, Integer urlid,
                        String contextpath, Integer suffix, String fromsys, String servername, Integer enable) {
        super();
        this.serverurl = serverurl;
        this.resourceid = resourceid;
        this.ispublic = ispublic;
        this.urlid = urlid;
        this.contextpath = contextpath;
        this.suffix = suffix;
        this.fromsys = fromsys;
        this.servername=servername;
        this.enable=enable;
    }
    
    public Integer getEnable() {
        return enable;
    }
 
    public void setEnable(Integer enable) {
        this.enable = enable;
    }
 
    public String getServername() {
        return servername;
    }
 
    public void setServername(String servername) {
        this.servername = servername;
    }
 
    public String getFromsys() {
        return fromsys;
    }
 
    public void setFromsys(String fromsys) {
        this.fromsys = fromsys;
    }
 
    public Integer getSuffix() {
        return suffix;
    }
 
    public void setSuffix(Integer suffix) {
        this.suffix = suffix;
    }
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getServerurl() {
        return serverurl;
    }
 
    public void setServerurl(String serverurl) {
        this.serverurl = serverurl;
    }
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public Integer getIspublic() {
        return ispublic;
    }
 
    public void setIspublic(Integer ispublic) {
        this.ispublic = ispublic;
    }
 
    public Integer getUrlid() {
        return urlid;
    }
 
    public void setUrlid(Integer urlid) {
        this.urlid = urlid;
    }
 
    public String getContextpath() {
        return contextpath;
    }
 
    public void setContextpath(String contextpath) {
        this.contextpath = contextpath;
    }
    
    
}