forked from rongchao/epmet-cloud-rizhao
5 changed files with 49 additions and 7 deletions
@ -0,0 +1,23 @@ |
|||
package com.epmet.screen.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 查询机关组织次数、参加人数的排序返参 |
|||
* @ClassName BranchBuildOrderByCountResultDTO |
|||
* @Auth wangc |
|||
* @Date 2020-08-20 09:20 |
|||
*/ |
|||
@Data |
|||
public class BranchBuildOrderByCountResultDTO implements Serializable { |
|||
private static final long serialVersionUID = -8268706123005848128L; |
|||
|
|||
private String orgName; |
|||
|
|||
private Integer organizeData; |
|||
|
|||
private Integer joinData; |
|||
|
|||
} |
|||
Loading…
Reference in new issue