7 changed files with 110 additions and 11 deletions
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dataaggre.dto.datastats.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description 对外接口--查询当前组织的用户和小组总数数 |
||||
|
* @Auth sun |
||||
|
*/ |
||||
|
@Data |
||||
|
public class UserAndGroupTotalResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 3564816296202777303L; |
||||
|
//话题总数
|
||||
|
private Integer userTotal = 0; |
||||
|
//小组总数
|
||||
|
private Integer groupTotal = 0; |
||||
|
private Integer sort = 1; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue