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 SysRolePwoerFn extends EntityDTO{
|
@Extend
|
private static final long serialVersionUID = 1L;
|
|
|
private Long rpfId;
|
|
|
/**
|
* 角色id
|
*/
|
private Long roleId;
|
|
|
/**
|
* 功能id
|
*/
|
private Long fnId;
|
|
|
/**
|
* 按钮s
|
*/
|
private String rpfBtns;
|
|
|
|
public Long getRpfId() {
|
return rpfId;
|
}
|
|
public void setRpfId(Long rpfId) {
|
this.rpfId=rpfId;
|
}
|
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
|
public Long getFnId() {
|
return fnId;
|
}
|
|
public void setFnId(Long fnId) {
|
this.fnId = fnId;
|
}
|
|
public String getRpfBtns() {
|
return rpfBtns;
|
}
|
|
public void setRpfBtns(String rpfBtns) {
|
this.rpfBtns=rpfBtns;
|
}
|
|
|
|
|
|
|
}
|