whycxzp
2021-03-12 2bae92b9b3dfac9766477a12dd3b6a339de80249
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
import java.beans.Transient;
 
/**
 * 应用中的模块配置
 */
@Alias("ApplicationConfig")
@TableName( schema = "`db_app_sys`",value = "`tb_application_config`")
public class ApplicationConfig {
 
    private Integer id;
    /**应用id*/
    private Integer appId;
    private String name;
    /**宽度*/
    private Double w;
    /**高度*/
    private Double h;
    /**X轴坐标*/
    private Double x;
    /**Y轴坐标*/
    private Double y;
    /**模块图表展示类型*/
    private String type;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    @Transient
    public Integer getAppId() {
        return appId;
    }
 
    @Transient
    public void setAppId(Integer appId) {
        this.appId = appId;
    }
 
    public String getName() {
        return name;
    }
 
    public void setName(String name) {
        this.name = name;
    }
 
    public Double getW() {
        return w;
    }
 
    public void setW(Double w) {
        this.w = w;
    }
 
    public Double getH() {
        return h;
    }
 
    public void setH(Double h) {
        this.h = h;
    }
 
    public Double getX() {
        return x;
    }
 
    public void setX(Double x) {
        this.x = x;
    }
 
    public Double getY() {
        return y;
    }
 
    public void setY(Double y) {
        this.y = y;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
}