Commit 471c788b by guojuxing

账号分组接口

parent 209e0e05
......@@ -66,6 +66,11 @@ public class AccountGroupDTO implements Serializable{
*/
private Date updateTime;
/**
* 组员数量
*/
private Integer memberCount;
public Integer getAccountGroupId() {
return accountGroupId;
}
......@@ -121,4 +126,12 @@ public class AccountGroupDTO implements Serializable{
public void setUpdateTime(Date updateTime) {
this.updateTime = updateTime;
}
public Integer getMemberCount() {
return memberCount;
}
public void setMemberCount(Integer memberCount) {
this.memberCount = memberCount;
}
}
package com.gic.auth.dto;
import java.io.Serializable;
/**
* 账号分组列表
* @ClassName: AccountGroupListDTO

* @Description: 

* @author guojuxing

* @date 2019/11/1 10:54 AM

*/
public class AccountGroupListDTO implements Serializable{
private static final long serialVersionUID = 3251951295153591662L;
private Integer accountGroupId;
private Integer memberCount;
public Integer getAccountGroupId() {
return accountGroupId;
}
public void setAccountGroupId(Integer accountGroupId) {
this.accountGroupId = accountGroupId;
}
public Integer getMemberCount() {
return memberCount;
}
public void setMemberCount(Integer memberCount) {
this.memberCount = memberCount;
}
}
......@@ -2,6 +2,7 @@ package com.gic.auth.service;
import com.gic.api.base.commons.ServiceResponse;
import com.gic.auth.dto.AccountGroupDTO;
import com.gic.auth.dto.AccountGroupListDTO;
import com.gic.auth.dto.AccountGroupMemberDTO;
import java.util.List;
......
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