mirror of
https://github.com/201206030/novel-plus.git
synced 2025-06-20 19:28:31 +00:00
41 lines
736 B
Java
41 lines
736 B
Java
package com.java2nb.system.domain;
|
|
|
|
public class UserRoleDO {
|
|
private Long id;
|
|
private Long userId;
|
|
private Long roleId;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "UserRoleDO{" +
|
|
"id=" + id +
|
|
", userId=" + userId +
|
|
", roleId=" + roleId +
|
|
'}';
|
|
}
|
|
}
|