2
13693261870
2022-09-16 653761a31dfeb50dd3d007e892d69c90bf0cdafc
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
package com.landtool.lanbase.modules.res.entity;
 
public class Res_ExtFileSource {
 
    private Integer resourceid;
    private String serverurl;
    private String storagemode;
    private String gettype;
    private String downloadmodel;
    private String filename;
    private Double filesize;
    private String ftpusername;
    private String ftppwd;
    private String filetype;
    private Integer filepages;
    private String sourcetype;
    private String ncconfig;
    private String ncjsonpath;
    private String ncjsonattribute;
 
    public Integer getResourceid() {
        return resourceid;
    }
 
    public void setResourceid(Integer resourceid) {
        this.resourceid = resourceid;
    }
 
    public String getServerurl() {
        return serverurl;
    }
 
    public void setServerurl(String serverurl) {
        this.serverurl = serverurl;
    }
 
    public String getStoragemode() {
        return storagemode;
    }
 
    public void setStoragemode(String storagemode) {
        this.storagemode = storagemode;
    }
 
    public String getGettype() {
        return gettype;
    }
 
    public void setGettype(String gettype) {
        this.gettype = gettype;
    }
 
    public String getDownloadmodel() {
        return downloadmodel;
    }
 
    public void setDownloadmodel(String downloadmodel) {
        this.downloadmodel = downloadmodel;
    }
 
    public String getFilename() {
        return filename;
    }
 
    public void setFilename(String filename) {
        this.filename = filename;
    }
 
    public Double getFilesize() {
        return filesize;
    }
 
    public void setFilesize(Double filesize) {
        this.filesize = filesize;
    }
 
    public String getFtpusername() {
        return ftpusername;
    }
 
    public void setFtpusername(String ftpusername) {
        this.ftpusername = ftpusername;
    }
 
    public String getFtppwd() {
        return ftppwd;
    }
 
    public void setFtppwd(String ftppwd) {
        this.ftppwd = ftppwd;
    }
 
    public String getFiletype() {
        return filetype;
    }
 
    public void setFiletype(String filetype) {
        this.filetype = filetype;
    }
 
    public Integer getFilepages() {
        return filepages;
    }
 
    public void setFilepages(Integer filepages) {
        this.filepages = filepages;
    }
 
    public String getSourcetype() {
        return sourcetype;
    }
 
    public void setSourcetype(String sourcetype) {
        this.sourcetype = sourcetype;
    }
 
    public String getNcconfig() {
        return ncconfig;
    }
 
    public void setNcconfig(String ncconfig) {
        this.ncconfig = ncconfig;
    }
 
    public String getNcjsonpath() {
        return ncjsonpath;
    }
 
    public void setNcjsonpath(String ncjsonpath) {
        this.ncjsonpath = ncjsonpath;
    }
 
    public String getNcjsonattribute() {
        return ncjsonattribute;
    }
 
    public void setNcjsonattribute(String ncjsonattribute) {
        this.ncjsonattribute = ncjsonattribute;
    }
 
 
}