39 lines
519 B
Java
39 lines
519 B
Java
package com.susanoo.fx.domain;
|
|
|
|
|
|
/**
|
|
* 用户和角色关联 sys_user_role
|
|
*
|
|
* @author ruoyi
|
|
*/
|
|
public class SysUserRole
|
|
{
|
|
/** 用户ID */
|
|
private Long userId;
|
|
|
|
/** 角色ID */
|
|
private Long roleId;
|
|
|
|
public Long getUserId()
|
|
{
|
|
return userId;
|
|
}
|
|
|
|
public void setUserId(Long userId)
|
|
{
|
|
this.userId = userId;
|
|
}
|
|
|
|
public Long getRoleId()
|
|
{
|
|
return roleId;
|
|
}
|
|
|
|
public void setRoleId(Long roleId)
|
|
{
|
|
this.roleId = roleId;
|
|
}
|
|
|
|
|
|
}
|