12 changed files with 228 additions and 23 deletions
@ -0,0 +1,64 @@ |
|||
package com.epmet.entity.evaluationindex.extract; |
|||
|
|||
import com.epmet.commons.tools.constant.NumConstant; |
|||
import com.epmet.commons.tools.constant.StrConstant; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/5/26 15:47 |
|||
*/ |
|||
@Data |
|||
public class GovernGridClosedTotalCommonDTO implements Serializable { |
|||
private static final long serialVersionUID = 7717094992132062415L; |
|||
private String gridId; |
|||
/** |
|||
* 11、来源于议题的项目,未出网格结案并且已解决的项目数 |
|||
*/ |
|||
private Integer fromIssueResolvedInGridCount; |
|||
|
|||
/** |
|||
* 12、来源于议题的项目,未出网格结案并且无需解决的项目数 |
|||
*/ |
|||
private Integer fromIssueUnResolvedInGridCount; |
|||
|
|||
/** |
|||
* 13、来源于项目立项的项目,未出网格结案,并且已解决的项目数;因现在网格不能立项,所以此列默认为0 |
|||
*/ |
|||
private Integer fromAgencyResolvedInGridCount; |
|||
|
|||
/** |
|||
* 14、来源于项目立项的项目,未出网格结案,并且无需解决的项目数;因现在网格不能立项,所以此列默认为0 |
|||
*/ |
|||
private Integer fromAgencyUnResolvedInGridCount; |
|||
|
|||
/** |
|||
* 当前网格内出来的项目:由社区结案(已解决+未解决)的项目总数 |
|||
*/ |
|||
private Integer communityClosedCount; |
|||
|
|||
/** |
|||
* 当前网格内出来的项目:由街道结案(已解决+未解决)的项目总数 |
|||
*/ |
|||
private Integer streetClosedCount; |
|||
|
|||
/** |
|||
* 当前网格内出来的项目:由街道结案(已解决+未解决)的项目总数 |
|||
*/ |
|||
private Integer districtDeptClosedCount; |
|||
|
|||
public GovernGridClosedTotalCommonDTO(){ |
|||
this.gridId = StrConstant.EPMETY_STR; |
|||
this.fromIssueResolvedInGridCount=NumConstant.ZERO; |
|||
this.fromIssueUnResolvedInGridCount=NumConstant.ZERO; |
|||
this.fromAgencyResolvedInGridCount=NumConstant.ZERO; |
|||
this.fromAgencyUnResolvedInGridCount=NumConstant.ZERO; |
|||
this.communityClosedCount=NumConstant.ZERO; |
|||
this.streetClosedCount=NumConstant.ZERO; |
|||
this.districtDeptClosedCount=NumConstant.ZERO; |
|||
} |
|||
} |
@ -0,0 +1,15 @@ |
|||
package com.epmet.entity.evaluationindex.extract; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 描述一下 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2021/5/26 18:00 |
|||
*/ |
|||
@Data |
|||
public class ProjectInfoDTO implements Serializable { |
|||
} |
Loading…
Reference in new issue