All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rexsheng.springboot.faster.system.role.domain.SysRoleAuth Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.role.domain;

public class SysRoleAuth {

    private Integer roleId;

    private Integer menuId;

    public SysRoleAuth() {
    }

    public SysRoleAuth(Integer menuId) {
        this.menuId = menuId;
    }

    public Integer getRoleId() {
        return roleId;
    }

    public void setRoleId(Integer roleId) {
        this.roleId = roleId;
    }

    public Integer getMenuId() {
        return menuId;
    }

    public void setMenuId(Integer menuId) {
        this.menuId = menuId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy