GihonUserRole.java 336 B

12345678910111213141516171819202122
  1. package com.gihon.component.rbac.entity;
  2. import com.baomidou.mybatisplus.annotation.TableName;
  3. import lombok.Getter;
  4. import lombok.Setter;
  5. /**
  6. * 系统账号和系统角色关联
  7. * @author baihe
  8. *
  9. */
  10. @Setter
  11. @Getter
  12. @TableName("gihon_user_role_tr")
  13. public class GihonUserRole {
  14. private Long userId;
  15. private Long roleId;
  16. }