jyy
2021-04-07 6f9a0cdb6360ff80818ce9ac947fb686e3045f8a
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
package com.matrix.system.common.bean;
 
import com.matrix.core.anotations.Extend;
import com.matrix.core.pojo.EntityDTO;
 
/**
 * 系统按钮
 * 
 * @author JIANGYOUYAO
 * @email 935090232@qq.com
 * @date 2017年12月3日
 */
public class SysButton extends EntityDTO {
 
    @Extend
    private static final long serialVersionUID = 1L;
 
    private Long btnId;
 
    private String btnKey;
 
    private String btnValue;
 
    public Long getBtnId() {
        return btnId;
    }
 
    public void setBtnId(Long btnId) {
        this.btnId = btnId;
    }
 
    public String getBtnKey() {
        return btnKey;
    }
 
    public void setBtnKey(String btnKey) {
        this.btnKey = btnKey;
    }
 
    public String getBtnValue() {
        return btnValue;
    }
 
    public void setBtnValue(String btnValue) {
        this.btnValue = btnValue;
    }
 
}