mitao
2025-01-17 afa0dbb4f54e7244835dd67ec33c3e545f122f71
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
package com.ruoyi.system.domain.pojo.sys;
 
import org.apache.commons.lang3.builder.ToStringBuilder;
import org.apache.commons.lang3.builder.ToStringStyle;
 
/**
 * 角色和菜单关联 sys_dept_menu
 * 
 * @author jqs
 */
public class SysDeptMenu
{
    /** 角色ID */
    private Long deptId;
    
    /** 菜单ID */
    private Long menuId;
 
    private Integer menuFrom;
 
    public Long getDeptId()
    {
        return deptId;
    }
 
    public void setDeptId(Long deptId)
    {
        this.deptId = deptId;
    }
 
    public Long getMenuId()
    {
        return menuId;
    }
 
    public void setMenuId(Long menuId)
    {
        this.menuId = menuId;
    }
 
    public Integer getMenuFrom() {
        return menuFrom;
    }
 
    public void setMenuFrom(Integer menuFrom) {
        this.menuFrom = menuFrom;
    }
 
    @Override
    public String toString() {
        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
            .append("deptId", getDeptId())
            .append("menuId", getMenuId())
            .toString();
    }
}