whyclxw
2025-05-28 e16302f9d475c7cc4dd18c5abf1a23cb5502e362
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
package com.whyc.pojo;
 
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import org.apache.ibatis.type.Alias;
 
@TableName(schema = "db_app_sys",value = "tb_page_param_user")
@Alias("PageParamUser")
public class PageParamUser {
 
    @TableId
    private Integer id;
    @TableField("`key`")
    private String key;
    private String label;
    @TableField("lableEnUs")
    private String lableEnUs;
    @TableField("`show`")
    private Integer show;
    private Integer userId;
    private Integer type;
 
    public Integer getId() {
        return id;
    }
 
    public void setId(Integer id) {
        this.id = id;
    }
 
    public String getKey() {
        return key;
    }
 
    public void setKey(String key) {
        this.key = key;
    }
 
    public String getLabel() {
        return label;
    }
 
    public void setLabel(String label) {
        this.label = label;
    }
 
    public Integer getShow() {
        return show;
    }
 
    public void setShow(Integer show) {
        this.show = show;
    }
 
    public Integer getUserId() {
        return userId;
    }
 
    public void setUserId(Integer userId) {
        this.userId = userId;
    }
 
    public Integer getType() {
        return type;
    }
 
    public void setType(Integer type) {
        this.type = type;
    }
 
    public String getLableEnUs() {
        return lableEnUs;
    }
 
    public void setLableEnUs(String lableEnUs) {
        this.lableEnUs = lableEnUs;
    }
}