whycxzp
2021-10-12 d5cf76188ad37f062f37ebce3464097203b4db05
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
/**
 * 应用
 */
@Alias("Application")
@TableName( schema = "`db_app_sys`",value = "`tb_application`")
public class Application {
 
    private Integer id;
    private String name;
    /**应用的缩略图*/
    private String screenshot;
    /**应用的配置页图片-头部*/
    private String headPic;
    /**应用的配置页面图片-背景*/
    private String bgPic;
    /**所属的用户id*/
    private Integer userId;
    /**激活状态*/
    private Integer activeStatus;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public String getScreenshot() {
        return screenshot;
    }
 
    public void setScreenshot(String screenshot) {
        this.screenshot = screenshot;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public String getHeadPic() {
        return headPic;
    }
 
    public void setHeadPic(String headPic) {
        this.headPic = headPic;
    }
 
    public String getBgPic() {
        return bgPic;
    }
 
    public void setBgPic(String bgPic) {
        this.bgPic = bgPic;
    }
 
    public Integer getActiveStatus() {
        return activeStatus;
    }
 
    public void setActiveStatus(Integer activeStatus) {
        this.activeStatus = activeStatus;
    }
}