You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
669 B
37 lines
669 B
/**
|
|
* Copyright (c) 2018 人人开源 All rights reserved.
|
|
*
|
|
* https://www.renren.io
|
|
*
|
|
* 版权所有,侵权必究!
|
|
*/
|
|
|
|
package com.epmet.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.epmet.commons.mybatis.entity.BaseEntity;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
/**
|
|
* 角色用户关系
|
|
*
|
|
* @author Mark sunlightcs@gmail.com
|
|
* @since 1.0.0
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper=false)
|
|
@TableName("sys_role_user")
|
|
public class SysRoleUserEntity extends BaseEntity {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
/**
|
|
* 角色ID
|
|
*/
|
|
private Long roleId;
|
|
/**
|
|
* 用户ID
|
|
*/
|
|
private Long userId;
|
|
|
|
}
|
|
|