admin
2022-01-28 760aee20870a34e6130a1c12237c5b747e2b00bd
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
package com.lcjian.library.upgrade;
 
import java.io.Serializable;
 
public class Version implements Serializable {
 
    /**
     * serialVersionUID
     */
    private static final long serialVersionUID = 1L;
    
    private String versionCode;
    private String description;
    private String downloadUrl;
    private String fileName;
    private String title;
    
    private int type;
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public String getTitle() {
        return title;
    }
 
    public void setTitle(String title) {
        this.title = title;
    }
 
    public String getVersionCode() {
        return versionCode;
    }
 
    public void setVersionCode(String versionCode) {
        this.versionCode = versionCode;
    }
 
    public String getDescription() {
        return description;
    }
 
    public void setDescription(String description) {
        this.description = description;
    }
 
    public String getDownloadUrl() {
        return downloadUrl;
    }
 
    public void setDownloadUrl(String downloadUrl) {
        this.downloadUrl = downloadUrl;
    }
 
    public String getFileName() {
        return fileName;
    }
 
    public void setFileName(String fileName) {
        this.fileName = fileName;
    }
}