package com.iplatform.base.pojo.role;
|
|
import com.walker.web.param.ParamRequest;
|
|
public class RoleUserParam extends ParamRequest {
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
|
public Long getUserId() {
|
return userId;
|
}
|
|
public void setUserId(Long userId) {
|
this.userId = userId;
|
}
|
|
private Long roleId;
|
private Long userId;
|
}
|