forked from rongchao/epmet-cloud-rizhao
15 changed files with 933 additions and 8 deletions
@ -0,0 +1,33 @@ |
|||
package com.epmet.dto.indexcal; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* 分页查询网格列表 |
|||
* |
|||
* @author yinzuomei@elink-cn.com |
|||
* @date 2020/8/27 14:37 |
|||
*/ |
|||
@Data |
|||
public class PageQueryGridFormDTO implements Serializable { |
|||
/** |
|||
* 客户id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 页码 |
|||
* */ |
|||
@Min(1) |
|||
private Integer pageNo; |
|||
|
|||
/** |
|||
* 每页多少条 |
|||
* */ |
|||
private Integer pageSize = 10; |
|||
|
|||
private Integer pageIndex; |
|||
} |
@ -0,0 +1,142 @@ |
|||
/** |
|||
* 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.indexcollect; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 治理能力-网格相关事实表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-26 |
|||
*/ |
|||
@Data |
|||
public class FactIndexGovrnAblityGridMonthlyDTO 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 avgShiftProjectRatio; |
|||
|
|||
/** |
|||
* 网格总项目数 |
|||
*/ |
|||
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 Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
} |
@ -0,0 +1,167 @@ |
|||
/** |
|||
* 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.indexcollect; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 党建能力-网格相关事实表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-26 |
|||
*/ |
|||
@Data |
|||
public class FactIndexPartyAblityGridMonthlyDTO 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; |
|||
|
|||
/** |
|||
* 年Idyyyy |
|||
*/ |
|||
private String yearId; |
|||
|
|||
/** |
|||
* 网格群众用户数 |
|||
*/ |
|||
private Integer userCount; |
|||
|
|||
/** |
|||
* 网格党员用户数 |
|||
*/ |
|||
private Integer partyCount; |
|||
|
|||
/** |
|||
* 网格活跃群众用户数 |
|||
*/ |
|||
private Integer activeUserCount; |
|||
|
|||
/** |
|||
* 网格活跃党员用户数 |
|||
*/ |
|||
private Integer activePartyCount; |
|||
|
|||
/** |
|||
* 网格党员人均提出话题数 |
|||
*/ |
|||
private Integer partyAvgTopicCount; |
|||
|
|||
/** |
|||
* 网格群众人均提出话题数 |
|||
*/ |
|||
private Integer userAvgTopicCount; |
|||
|
|||
/** |
|||
* 网格党员人均提出的议题转项目数 |
|||
*/ |
|||
private Integer partyAvgShiftProjectCount; |
|||
|
|||
/** |
|||
* 网格群众人均提出的议题转项目数 |
|||
*/ |
|||
private Integer userAvgShiftProjectCount; |
|||
|
|||
/** |
|||
* 建群党员数(累计值) 去重 |
|||
*/ |
|||
private Integer createGroupPartyCount; |
|||
|
|||
/** |
|||
* 网格发文数 |
|||
*/ |
|||
private Integer publishArticleCount; |
|||
|
|||
/** |
|||
* 网格议题转项目率 |
|||
*/ |
|||
private BigDecimal issueToProjectRatio; |
|||
|
|||
/** |
|||
* 组织三会一课次数 |
|||
*/ |
|||
private Integer createThreeMeetsCount; |
|||
|
|||
/** |
|||
* 党员参加三会一课人次 |
|||
*/ |
|||
private Integer joinThreeMeetsCount; |
|||
|
|||
/** |
|||
* 删除标识 0未删除;1已删除 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
} |
@ -0,0 +1,117 @@ |
|||
/** |
|||
* 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.indexcollect; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import lombok.Data; |
|||
|
|||
import java.math.BigDecimal; |
|||
|
|||
/** |
|||
* 服务能力-网格相关事实表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-08-26 |
|||
*/ |
|||
@Data |
|||
public class FactIndexServiceAblityGridMonthlyDTO 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 activityCount; |
|||
|
|||
/** |
|||
* 网格志愿者占比 |
|||
*/ |
|||
private BigDecimal volunteerRatio; |
|||
|
|||
/** |
|||
* 网格党员志愿者率 |
|||
*/ |
|||
private BigDecimal partyVolunteerRatio; |
|||
|
|||
/** |
|||
* 删除标识 0未删除;1已删除 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
} |
Loading…
Reference in new issue