package com.gkhy.safePlatform.account.model.query;
|
|
import java.io.Serializable;
|
|
public class AccountQuery implements Serializable {
|
|
private static final long serialVersionUID = 508044132003798174L;
|
|
private String username;
|
|
private String realName;
|
|
private Long depId;
|
|
private Long positionId;
|
|
private Long roleId;
|
|
public String getUsername() {
|
return username;
|
}
|
|
public void setUsername(String username) {
|
this.username = username;
|
}
|
|
public String getRealName() {
|
return realName;
|
}
|
|
public void setRealName(String realName) {
|
this.realName = realName;
|
}
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Long getPositionId() {
|
return positionId;
|
}
|
|
public void setPositionId(Long positionId) {
|
this.positionId = positionId;
|
}
|
|
public Long getRoleId() {
|
return roleId;
|
}
|
|
public void setRoleId(Long roleId) {
|
this.roleId = roleId;
|
}
|
}
|