14 changed files with 415 additions and 4 deletions
@ -0,0 +1,18 @@ |
|||
package com.epmet.dto.result.issue; |
|||
|
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class KcIssueSummary { |
|||
|
|||
private String dateId; |
|||
private Integer reportCount; |
|||
private Integer issueCount; |
|||
private Integer pendingCount; |
|||
private Integer rejectedCount; |
|||
private Integer processingCount; |
|||
private Integer closedCount; |
|||
private Integer issueViewCount; |
|||
private Integer voteCount; |
|||
|
|||
} |
@ -0,0 +1,16 @@ |
|||
package com.epmet.dto.result.issue; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
@Data |
|||
public class KcPartiTrendResultDTO { |
|||
|
|||
private String monthId; |
|||
private Integer reportCount; |
|||
|
|||
private List<String> xAxis = new ArrayList<>(); |
|||
private List<Integer> reportCountDataList = new ArrayList<>(); |
|||
} |
@ -0,0 +1,156 @@ |
|||
/** |
|||
* 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.datareport.dao.issue; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import lombok.Data; |
|||
|
|||
|
|||
/** |
|||
* KC-议题分析(各类总数) |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class ScreenKcIssueSummaryGridDailyDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* ID 主键(先根据customerId+dateId删除,后插入) |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 数据更新至:yyyyMMdd |
|||
*/ |
|||
private String dateId; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 上报总数 |
|||
*/ |
|||
private Integer reportCount; |
|||
|
|||
/** |
|||
* 议题总数 |
|||
*/ |
|||
private Integer issueCount; |
|||
|
|||
/** |
|||
* 待审核数 |
|||
*/ |
|||
private Integer pendingCount; |
|||
|
|||
/** |
|||
* 已驳回数 |
|||
*/ |
|||
private Integer rejectedCount; |
|||
|
|||
/** |
|||
* 处理中数 |
|||
*/ |
|||
private Integer processingCount; |
|||
|
|||
/** |
|||
* 已关闭数 |
|||
*/ |
|||
private Integer closedCount; |
|||
|
|||
/** |
|||
* 议题浏览数 |
|||
*/ |
|||
private Integer issueViewCount; |
|||
|
|||
/** |
|||
* 表态数 |
|||
*/ |
|||
private Integer voteCount; |
|||
|
|||
/** |
|||
* 审核通过数 ?为了算议题效率 |
|||
*/ |
|||
private Integer passedCount; |
|||
|
|||
/** |
|||
* 转化成项目数 ?为了算议题效率 |
|||
*/ |
|||
private Integer shiftToProjectCount; |
|||
|
|||
/** |
|||
* 平均审核时间单位分钟 ? |
|||
*/ |
|||
private Integer avgAuditTime; |
|||
|
|||
/** |
|||
* 删除标识 0未删除;1已删除 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
} |
@ -0,0 +1,106 @@ |
|||
/** |
|||
* 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.datareport.dao.issue; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
import lombok.Data; |
|||
|
|||
|
|||
/** |
|||
* KC-议题参与趋势(每天上报当前月)customerId+monthId先删后增 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2020-09-14 |
|||
*/ |
|||
@Data |
|||
public class ScreenKcIssueTrendGridMonthlyDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* ID 主键(每天上报当前月),按照customerId+monthId先删除记录,再插入 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 客户Id |
|||
*/ |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 月id :yyyyMM |
|||
*/ |
|||
private String monthId; |
|||
|
|||
/** |
|||
* 网格id |
|||
*/ |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 网格名称 |
|||
*/ |
|||
private String gridName; |
|||
|
|||
/** |
|||
* 网格所属的组织id |
|||
*/ |
|||
private String parentAgencyId; |
|||
|
|||
/** |
|||
* 所有上级ID,用英文逗号分开 ? |
|||
*/ |
|||
private String allParentIds; |
|||
|
|||
/** |
|||
* 议题上报数(本月内上报的议题数量) |
|||
*/ |
|||
private Integer reportCount; |
|||
|
|||
/** |
|||
* 删除标识 0未删除;1已删除 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
} |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.issue.ScreenKcIssueSummaryGridDailyDTO"> |
|||
|
|||
|
|||
|
|||
</mapper> |
@ -0,0 +1,8 @@ |
|||
<?xml version="1.0" encoding="UTF-8"?> |
|||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
|||
|
|||
<mapper namespace="com.epmet.datareport.dao.issue.ScreenKcIssueTrendGridMonthlyDTO"> |
|||
|
|||
|
|||
|
|||
</mapper> |
Loading…
Reference in new issue