package com.gkhy.safePlatform.account.model.query.db;
|
|
import java.io.Serializable;
|
|
public class GroupDBQuery implements Serializable {
|
|
|
private static final long serialVersionUID = -1514897216868473186L;
|
|
|
private Long depId;
|
|
private String groupName;
|
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public String getGroupName() {
|
return groupName;
|
}
|
|
public void setGroupName(String groupName) {
|
this.groupName = groupName;
|
}
|
}
|