Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gic-platform-auth
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
base_platform_enterprise
gic-platform-auth
Commits
471c788b
Commit
471c788b
authored
Nov 01, 2019
by
guojuxing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
账号分组接口
parent
209e0e05
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
0 deletions
+47
-0
AccountGroupDTO.java
...h-api/src/main/java/com/gic/auth/dto/AccountGroupDTO.java
+13
-0
AccountGroupListDTO.java
...i/src/main/java/com/gic/auth/dto/AccountGroupListDTO.java
+33
-0
AccountGroupApiService.java
...ain/java/com/gic/auth/service/AccountGroupApiService.java
+1
-0
No files found.
gic-platform-auth-api/src/main/java/com/gic/auth/dto/AccountGroupDTO.java
View file @
471c788b
...
...
@@ -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
;
}
}
gic-platform-auth-api/src/main/java/com/gic/auth/dto/AccountGroupListDTO.java
0 → 100644
View file @
471c788b
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
;
}
}
gic-platform-auth-api/src/main/java/com/gic/auth/service/AccountGroupApiService.java
View file @
471c788b
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment