whycxzp
2021-03-15 351f4781aa6d7e5034ed73f2a216032256149a54
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
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;
 
    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;
    }
 
}