kongdeqiang
2022-09-19 a9862e81851bbe037edc6bb1c7f562c1e55c0d7f
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
package com.boying.entity;
 
import com.boying.common.BaseEntity;
 
import javax.persistence.Entity;
import javax.persistence.Table;
 
@Table(name = "updateApp")
@Entity
public class UpdateApp extends BaseEntity {
 
    private String apkUrl;//apk下载地址
    private String updateTitle;//更新标题
    private String updateContent;//更新内容
    private String version;//版本号
    private String versionName;//版本
 
    public String getApkUrl() {
        return apkUrl;
    }
 
    public void setApkUrl(String apkUrl) {
        this.apkUrl = apkUrl;
    }
 
    public String getUpdateTitle() {
        return updateTitle;
    }
 
    public void setUpdateTitle(String updateTitle) {
        this.updateTitle = updateTitle;
    }
 
    public String getUpdateContent() {
        return updateContent;
    }
 
    public void setUpdateContent(String updateContent) {
        this.updateContent = updateContent;
    }
 
    public String getVersion() {
        return version;
    }
 
    public void setVersion(String version) {
        this.version = version;
    }
 
    public String getVersionName() {
        return versionName;
    }
 
    public void setVersionName(String versionName) {
        this.versionName = versionName;
    }
}