10 changed files with 209 additions and 24 deletions
@ -0,0 +1,66 @@ |
|||
package com.epmet.dto.screencoll.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 17、指数_按年统计 入参 |
|||
* @Auther: zhangyong |
|||
* @Date: 2020-08-18 09:59 |
|||
*/ |
|||
@Data |
|||
public class IndexDataYearlyFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* yyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 组织类别 agency:组织;部门:department;网格:grid |
|||
*/ |
|||
private String orgType; |
|||
|
|||
/** |
|||
* 组织Id 可以为网格,机关id |
|||
*/ |
|||
private String orgId; |
|||
|
|||
/** |
|||
* 上级组织Id |
|||
*/ |
|||
private String parentId; |
|||
|
|||
/** |
|||
* 组织名称 |
|||
*/ |
|||
private String orgName; |
|||
|
|||
/** |
|||
* 总指数 |
|||
*/ |
|||
private Integer indexTotal; |
|||
|
|||
/** |
|||
* 党建能力指数 |
|||
*/ |
|||
private Integer partyDevAblity; |
|||
|
|||
/** |
|||
* 服务能力指数 |
|||
*/ |
|||
private Integer serviceAblity; |
|||
|
|||
/** |
|||
* 治理能力指数 |
|||
*/ |
|||
private Integer governAblity; |
|||
} |
Loading…
Reference in new issue