1 changed files with 36 additions and 0 deletions
@ -0,0 +1,36 @@ |
|||||
|
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 组织项目数统计 |
||||
|
* |
||||
|
* @author zhy |
||||
|
* @date 2021/6/28 9:28 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenGovernItemInfoResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -4035893591086943602L; |
||||
|
|
||||
|
/** |
||||
|
* 组织Id 可以为网格,机关id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 组织类型 |
||||
|
*/ |
||||
|
private String typeKey; |
||||
|
|
||||
|
/** |
||||
|
* 项目总数 |
||||
|
*/ |
||||
|
private Integer itemTotal; |
||||
|
|
||||
|
/** |
||||
|
* 项目结案总数 |
||||
|
*/ |
||||
|
private Integer itemSettleTotal; |
||||
|
} |
Loading…
Reference in new issue