11 changed files with 446 additions and 6 deletions
@ -0,0 +1,148 @@ |
|||||
|
/** |
||||
|
* Copyright 2018 人人开源 https://www.renren.io
|
||||
|
* <p> |
||||
|
* This program is free software: you can redistribute it and/or modify |
||||
|
* it under the terms of the GNU General Public License as published by |
||||
|
* the Free Software Foundation, either version 3 of the License, or |
||||
|
* (at your option) any later version. |
||||
|
* <p> |
||||
|
* This program is distributed in the hope that it will be useful, |
||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
|
* GNU General Public License for more details. |
||||
|
* <p> |
||||
|
* You should have received a copy of the GNU General Public License |
||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
*/ |
||||
|
|
||||
|
package com.epmet.dto.extract.form; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
import com.epmet.commons.tools.constant.NumConstant; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* 治理能力-网格相关事实表 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2020-09-18 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GovernAbilityGridMonthlyFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* ID 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户Id |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属机关Id |
||||
|
*/ |
||||
|
private String agencyId; |
||||
|
|
||||
|
/** |
||||
|
* 网格Id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 月维度Id:yyyyMM |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 季度Id:yyyyQ1,yyyyQ2,yyyyQ3,yyyyQ4 |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 年Id:yyyy |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
|
||||
|
/** |
||||
|
* 网格总议题数 |
||||
|
*/ |
||||
|
private Integer issueTotal; |
||||
|
|
||||
|
/** |
||||
|
* 网格人均议题数目 |
||||
|
*/ |
||||
|
private Integer avgIssueCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格议题转项目率 |
||||
|
*/ |
||||
|
private BigDecimal issueToProjectRatio; |
||||
|
|
||||
|
/** |
||||
|
* 网格总项目数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 网格自治项目数 统计期网格自身内办结的项目数目 |
||||
|
*/ |
||||
|
private Integer selfSolveProjectCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格办结项目数 统计期内办结的项目数目 |
||||
|
*/ |
||||
|
private Integer resolveProjectCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格吹哨部门准确率 |
||||
|
*/ |
||||
|
private BigDecimal transferRightRatio; |
||||
|
|
||||
|
/** |
||||
|
* 网格内解决的项目的满意度 |
||||
|
*/ |
||||
|
private BigDecimal satisfactionRatio; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 0未删除;1已删除 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
public GovernAbilityGridMonthlyFormDTO() { |
||||
|
this.issueTotal = NumConstant.ZERO; |
||||
|
this.avgIssueCount = NumConstant.ZERO; |
||||
|
this.issueToProjectRatio = new BigDecimal(NumConstant.ZERO); |
||||
|
this.projectTotal = NumConstant.ZERO; |
||||
|
this.selfSolveProjectCount = NumConstant.ZERO; |
||||
|
this.resolveProjectCount = NumConstant.ZERO; |
||||
|
this.transferRightRatio = new BigDecimal(NumConstant.ZERO); |
||||
|
this.satisfactionRatio = new BigDecimal(NumConstant.ZERO); |
||||
|
this.delFlag = NumConstant.ZERO_STR; |
||||
|
this.revision = NumConstant.ZERO; |
||||
|
this.createdBy = "APP_USER"; |
||||
|
this.updatedBy = "APP_USER"; |
||||
|
} |
||||
|
} |
||||
@ -0,0 +1,45 @@ |
|||||
|
package com.epmet.dto.extract.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/9/18 10:12 上午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridIssueCountResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1222149631076688225L; |
||||
|
|
||||
|
/** |
||||
|
* 网格总议题数目 |
||||
|
*/ |
||||
|
private Integer issueTotal; |
||||
|
|
||||
|
/** |
||||
|
* 网格人均议题数目 |
||||
|
*/ |
||||
|
private Integer avgIssueCount; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 月份ID |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 季度ID |
||||
|
*/ |
||||
|
private String quarterId; |
||||
|
|
||||
|
/** |
||||
|
* 年度ID |
||||
|
*/ |
||||
|
private String yearId; |
||||
|
} |
||||
@ -0,0 +1,31 @@ |
|||||
|
package com.epmet.dto.extract.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.math.BigDecimal; |
||||
|
|
||||
|
/** |
||||
|
* @Author zxc |
||||
|
* @DateTime 2020/9/18 1:22 下午 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class GridProjectCountResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1348707512443965601L; |
||||
|
|
||||
|
/** |
||||
|
* 网格总项目数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 网格ID |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格议题转项目率 |
||||
|
*/ |
||||
|
private BigDecimal issueToProjectRatio; |
||||
|
} |
||||
Loading…
Reference in new issue