Commit 36eb1e43 by guojuxing

协作人分页查询修改:分组过滤条件添加

parent 983b268f
package com.gic.auth.qo;
import com.gic.enterprise.qo.PageQO;
import java.util.List;
/**
* 协作人列表查询参数
* @ClassName: CollaboratorListQO

......@@ -24,6 +27,10 @@ public class CollaboratorListQO extends PageQO{
private Integer enterpriseId;
private Integer accountGroupId;
private List<Integer> collaboratorIdList;
public String getSearch() {
return search;
}
......@@ -55,4 +62,20 @@ public class CollaboratorListQO extends PageQO{
public void setEnterpriseId(Integer enterpriseId) {
this.enterpriseId = enterpriseId;
}
public Integer getAccountGroupId() {
return accountGroupId;
}
public void setAccountGroupId(Integer accountGroupId) {
this.accountGroupId = accountGroupId;
}
public List<Integer> getCollaboratorIdList() {
return collaboratorIdList;
}
public void setCollaboratorIdList(List<Integer> collaboratorIdList) {
this.collaboratorIdList = collaboratorIdList;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment