1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.system.router.entity;
 
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Table;
 
import org.hibernate.annotations.DynamicUpdate;
 
import com.app.base.entity.BaseEntity;
 
/**
 * 角色基础信息表
 *
 */
@Entity(name = "sysRouter")
@Table(name= SysRouter.TABLE_NAME)
@DynamicUpdate
public class SysRouter extends BaseEntity {
    private static final long serialVersionUID = -5951531333314901264L;
    public static final String TABLE_NAME = "sys_router";
 
 
    /**
     * 备注
     */
    @Column(length=255)
    protected String routerComment;
    
    /**
     * 菜单名
     */
    @Column(length=255)
    protected String routerName;
    
    /**
     * 菜单代码
     */
    @Column(length=255)
    protected String routerCode;
    
    /**
     * 是否启用
     */
    @Column(length=255)
    protected int routerStatus;
    
    /**
     * 序号
     */
    @Column(length=255)
    protected int routerIndex;
    
    /**
     * 父节点Id
     */
    @Column(length=255)
    protected Long parentId;
    
 
    public String getRouterComment() {
        return routerComment;
    }
 
    public void setRouterComment(String routerComment) {
        this.routerComment = routerComment;
    }
 
    public String getRouterName() {
        return routerName;
    }
 
    public void setRouterName(String routerName) {
        this.routerName = routerName;
    }
 
    public String getRouterCode() {
        return routerCode;
    }
 
    public void setRouterCode(String routerCode) {
        this.routerCode = routerCode;
    }
 
    public int getRouterStatus() {
        return routerStatus;
    }
 
    public void setRouterStatus(int routerStatus) {
        this.routerStatus = routerStatus;
    }
 
    public int getRouterIndex() {
        return routerIndex;
    }
 
    public void setRouterIndex(int routerIndex) {
        this.routerIndex = routerIndex;
    }
 
    public Long getParentId() {
        return parentId;
    }
 
    public void setParentId(Long parentId) {
        this.parentId = parentId;
    }
    
    
 
}