package com.terra.system.entity.sys;
|
|
import java.io.Serializable;
|
import java.sql.Timestamp;
|
|
/**
|
* 角色-菜单
|
* @author WWW
|
*/
|
public class RoleMenuAuthEntity implements Serializable {
|
private static final long serialVersionUID = -510981272678347904L;
|
|
private int id;
|
|
private int roleid;
|
|
private int menuAuthId;
|
|
private int menuid;
|
|
private String name;
|
|
private int createUser;
|
|
private Timestamp createTime;
|
|
private int updateUser;
|
|
private Timestamp updateTime;
|
|
public RoleMenuAuthEntity() {
|
}
|
|
public int getId() {
|
return id;
|
}
|
|
public void setId(int id) {
|
this.id = id;
|
}
|
|
public int getRoleid() {
|
return roleid;
|
}
|
|
public void setRoleid(int roleid) {
|
this.roleid = roleid;
|
}
|
|
public int getMenuAuthId() {
|
return menuAuthId;
|
}
|
|
public void setMenuAuthId(int menuAuthId) {
|
this.menuAuthId = menuAuthId;
|
}
|
|
public int getMenuid() {
|
return menuid;
|
}
|
|
public void setMenuid(int menuid) {
|
this.menuid = menuid;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public int getCreateUser() {
|
return createUser;
|
}
|
|
public void setCreateUser(int createUser) {
|
this.createUser = createUser;
|
}
|
|
public Timestamp getCreateTime() {
|
return createTime;
|
}
|
|
public void setCreateTime(Timestamp createTime) {
|
this.createTime = createTime;
|
}
|
|
public int getUpdateUser() {
|
return updateUser;
|
}
|
|
public void setUpdateUser(int updateUser) {
|
this.updateUser = updateUser;
|
}
|
|
public Timestamp getUpdateTime() {
|
return updateTime;
|
}
|
|
public void setUpdateTime(Timestamp updateTime) {
|
this.updateTime = updateTime;
|
}
|
}
|