33 changed files with 2046 additions and 0 deletions
@ -0,0 +1,126 @@ |
|||||
|
/** |
||||
|
* 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; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按网格_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectCategoryGridDailyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 类别编码 |
||||
|
*/ |
||||
|
private String epmetCategoryCode; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下所有项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下,正在处理中的项目总数 |
||||
|
*/ |
||||
|
private Integer pendingTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案的项目总数 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案无需解决的项目总数 |
||||
|
*/ |
||||
|
private Integer unResolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,131 @@ |
|||||
|
/** |
||||
|
* 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; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按组织_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectCategoryOrgDailyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 类别编码 |
||||
|
*/ |
||||
|
private String epmetCategoryCode; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下所有项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下,正在处理中的项目总数 |
||||
|
*/ |
||||
|
private Integer pendingTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案的项目总数 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案无需解决的项目总数 |
||||
|
*/ |
||||
|
private Integer unResolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,137 @@ |
|||||
|
/** |
||||
|
* 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 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectGridDailyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedNum; |
||||
|
|
||||
|
/** |
||||
|
* 解决率=RESOLVED_NUM/PROJECT_TOTAL,存储小数即可,保留小数点后4位 |
||||
|
*/ |
||||
|
private BigDecimal resolvedRatio; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,参与满意度评价的总次数 |
||||
|
*/ |
||||
|
private Integer evaluateTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,满意+非常满意的总次数 |
||||
|
*/ |
||||
|
private Integer goodTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,不满意总次数 |
||||
|
*/ |
||||
|
private Integer badTotal; |
||||
|
|
||||
|
/** |
||||
|
* 满意率=good_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal goodRatio; |
||||
|
|
||||
|
/** |
||||
|
* 不满意率=bad_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal badRatio; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -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 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectOrgDailyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedNum; |
||||
|
|
||||
|
/** |
||||
|
* 解决率=RESOLVED_NUM/PROJECT_TOTAL,存储小数即可,保留小数点后4位 |
||||
|
*/ |
||||
|
private BigDecimal resolvedRatio; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,参与满意度评价的总次数 |
||||
|
*/ |
||||
|
private Integer evaluateTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,满意+非常满意的总次数 |
||||
|
*/ |
||||
|
private Integer goodTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,不满意总次数 |
||||
|
*/ |
||||
|
private Integer badTotal; |
||||
|
|
||||
|
/** |
||||
|
* 满意率=good_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal goodRatio; |
||||
|
|
||||
|
/** |
||||
|
* 不满意率=bad_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal badRatio; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,121 @@ |
|||||
|
/** |
||||
|
* 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; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按网格_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectQuantityGridMonthlyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 当前网格,本月新增的项目数量:转项目日期在当前月份内 |
||||
|
*/ |
||||
|
private Integer projectIncr; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计未结项目总数 |
||||
|
*/ |
||||
|
private Integer unClosedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计已结项目 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 本月新增结案项目数 |
||||
|
*/ |
||||
|
private Integer closedIncr; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,126 @@ |
|||||
|
/** |
||||
|
* 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; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按组织_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ScreenProjectQuantityOrgMonthlyDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 主键 |
||||
|
*/ |
||||
|
private String id; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 当前组织内,本月新增的项目数量:转项目日期在当前月份内 |
||||
|
*/ |
||||
|
private Integer projectIncr; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计未结项目总数 |
||||
|
*/ |
||||
|
private Integer unClosedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计已结项目 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 本月新增结案项目数 |
||||
|
*/ |
||||
|
private Integer closedIncr; |
||||
|
|
||||
|
/** |
||||
|
* 删除标识 |
||||
|
*/ |
||||
|
private String delFlag; |
||||
|
|
||||
|
/** |
||||
|
* 乐观锁 |
||||
|
*/ |
||||
|
private Integer revision; |
||||
|
|
||||
|
/** |
||||
|
* 创建人 |
||||
|
*/ |
||||
|
private String createdBy; |
||||
|
|
||||
|
/** |
||||
|
* 创建时间 |
||||
|
*/ |
||||
|
private Date createdTime; |
||||
|
|
||||
|
/** |
||||
|
* 更新人 |
||||
|
*/ |
||||
|
private String updatedBy; |
||||
|
|
||||
|
/** |
||||
|
* 更新时间 |
||||
|
*/ |
||||
|
private Date updatedTime; |
||||
|
|
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectCategoryGridDailyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)分类按网格_按天统计 传入参数 |
||||
|
* @ClassName ColProjectCategoryGridDailyListFormDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:29 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectCategoryGridDailyListFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -5649120224533894681L; |
||||
|
|
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectCategoryGridDailyDTO> dataList; |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectCategoryOrgDailyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)分类按组织_按天统计 传入参数 |
||||
|
* @ClassName ColProjectCategoryOrgDailyListFromDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:29 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectCategoryOrgDailyListFromDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -5606202046322115413L; |
||||
|
|
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectCategoryOrgDailyDTO> dataList; |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectGridDailyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)分析按网格_按天统计 传入参数 |
||||
|
* @ClassName ColProjectGridDailyListFromDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:29 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectGridDailyListFromDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -7615867900486598440L; |
||||
|
|
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectGridDailyDTO> dataList; |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectOrgDailyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)分析按组织_按天统计 传入参数 |
||||
|
* @ClassName ColProjectOrgDailyListFromDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectOrgDailyListFromDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3813434634371460918L; |
||||
|
|
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectOrgDailyDTO> dataList; |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectQuantityGridMonthlyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)数量分析按网格_按月统计 传入参数 |
||||
|
* @ClassName ColProjectQuantityGridMonthlyListFromDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectQuantityGridMonthlyListFromDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -3662662990777826261L; |
||||
|
|
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectQuantityGridMonthlyDTO> dataList; |
||||
|
} |
@ -0,0 +1,37 @@ |
|||||
|
package com.epmet.dto.indexcollect.form; |
||||
|
|
||||
|
import com.epmet.dto.indexcollect.ScreenProjectQuantityOrgMonthlyDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import javax.validation.constraints.NotEmpty; |
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
import java.util.List; |
||||
|
|
||||
|
/** |
||||
|
* @Description 上传 项目(事件)数量分析按组织_按月统计 传入参数 |
||||
|
* @ClassName ColProjectQuantityOrgMonthlyListFromDTO |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 16:30 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ColProjectQuantityOrgMonthlyListFromDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -8551691254980519285L; |
||||
|
/** |
||||
|
* 当为true时后台将先删除当前维度的数据,后新增 |
||||
|
*/ |
||||
|
@NotNull(message = "是否首次不可为空") |
||||
|
private Boolean isFirst; |
||||
|
|
||||
|
/** |
||||
|
* 日期Id, 数据更新至:yyyyMMdd |
||||
|
*/ |
||||
|
@NotBlank(message = "日期不可为空") |
||||
|
private String dateId; |
||||
|
|
||||
|
@NotNull(message = "缺少数据列表") |
||||
|
@NotEmpty(message = "数据列表不能为空") |
||||
|
private List<ScreenProjectQuantityOrgMonthlyDTO> dataList; |
||||
|
|
||||
|
} |
@ -0,0 +1,17 @@ |
|||||
|
package com.epmet.controller; |
||||
|
|
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||
|
import org.springframework.web.bind.annotation.RestController; |
||||
|
|
||||
|
/** |
||||
|
* @Description 事件/项目采集接口入口 |
||||
|
* @ClassName ScreenProjectDataCollController |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 17:10 |
||||
|
*/ |
||||
|
@Slf4j |
||||
|
@RestController |
||||
|
@RequestMapping("project") |
||||
|
public class ScreenProjectDataCollController { |
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectCategoryGridDailyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按网格_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectCategoryGridDailyDao extends BaseDao<ScreenProjectCategoryGridDailyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectCategoryOrgDailyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按组织_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectCategoryOrgDailyDao extends BaseDao<ScreenProjectCategoryOrgDailyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectGridDailyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分析按网格_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectGridDailyDao extends BaseDao<ScreenProjectGridDailyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectOrgDailyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分析按组织_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectOrgDailyDao extends BaseDao<ScreenProjectOrgDailyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectQuantityGridMonthlyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按网格_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectQuantityGridMonthlyDao extends BaseDao<ScreenProjectQuantityGridMonthlyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
/** |
||||
|
* 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.dao.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.dao.BaseDao; |
||||
|
import com.epmet.entity.evaluationindex.indexcoll.ScreenProjectQuantityOrgMonthlyEntity; |
||||
|
import org.apache.ibatis.annotations.Mapper; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按组织_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Mapper |
||||
|
public interface ScreenProjectQuantityOrgMonthlyDao extends BaseDao<ScreenProjectQuantityOrgMonthlyEntity> { |
||||
|
|
||||
|
} |
@ -0,0 +1,96 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按网格_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_category_grid_daily") |
||||
|
public class ScreenProjectCategoryGridDailyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 类别编码 |
||||
|
*/ |
||||
|
private String epmetCategoryCode; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下所有项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下,正在处理中的项目总数 |
||||
|
*/ |
||||
|
private Integer pendingTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案的项目总数 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案无需解决的项目总数 |
||||
|
*/ |
||||
|
private Integer unResolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedTotal; |
||||
|
|
||||
|
} |
@ -0,0 +1,101 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分类按组织_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_category_org_daily") |
||||
|
public class ScreenProjectCategoryOrgDailyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 类别编码 |
||||
|
*/ |
||||
|
private String epmetCategoryCode; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下所有项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下,正在处理中的项目总数 |
||||
|
*/ |
||||
|
private Integer pendingTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案的项目总数 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案无需解决的项目总数 |
||||
|
*/ |
||||
|
private Integer unResolvedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 该分类下已结案已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedTotal; |
||||
|
|
||||
|
} |
@ -0,0 +1,107 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分析按网格_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_grid_daily") |
||||
|
public class ScreenProjectGridDailyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedNum; |
||||
|
|
||||
|
/** |
||||
|
* 解决率=RESOLVED_NUM/PROJECT_TOTAL,存储小数即可,保留小数点后4位 |
||||
|
*/ |
||||
|
private BigDecimal resolvedRatio; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,参与满意度评价的总次数 |
||||
|
*/ |
||||
|
private Integer evaluateTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,满意+非常满意的总次数 |
||||
|
*/ |
||||
|
private Integer goodTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前网格内项目,不满意总次数 |
||||
|
*/ |
||||
|
private Integer badTotal; |
||||
|
|
||||
|
/** |
||||
|
* 满意率=good_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal goodRatio; |
||||
|
|
||||
|
/** |
||||
|
* 不满意率=bad_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal badRatio; |
||||
|
|
||||
|
} |
@ -0,0 +1,112 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.math.BigDecimal; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)分析按组织_按天统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_org_daily") |
||||
|
public class ScreenProjectOrgDailyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String dateId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前日期,网格内已解决的项目总数 |
||||
|
*/ |
||||
|
private Integer resolvedNum; |
||||
|
|
||||
|
/** |
||||
|
* 解决率=RESOLVED_NUM/PROJECT_TOTAL,存储小数即可,保留小数点后4位 |
||||
|
*/ |
||||
|
private BigDecimal resolvedRatio; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,参与满意度评价的总次数 |
||||
|
*/ |
||||
|
private Integer evaluateTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,满意+非常满意的总次数 |
||||
|
*/ |
||||
|
private Integer goodTotal; |
||||
|
|
||||
|
/** |
||||
|
* 对当前组织内项目,不满意总次数 |
||||
|
*/ |
||||
|
private Integer badTotal; |
||||
|
|
||||
|
/** |
||||
|
* 满意率=good_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal goodRatio; |
||||
|
|
||||
|
/** |
||||
|
* 不满意率=bad_total/evaluate_total |
||||
|
*/ |
||||
|
private BigDecimal badRatio; |
||||
|
|
||||
|
} |
@ -0,0 +1,91 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按网格_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_quantity_grid_monthly") |
||||
|
public class ScreenProjectQuantityGridMonthlyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 网格所属的组织id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* 网格所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 当前网格,本月新增的项目数量:转项目日期在当前月份内 |
||||
|
*/ |
||||
|
private Integer projectIncr; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计未结项目总数 |
||||
|
*/ |
||||
|
private Integer unClosedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计已结项目 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 本月新增结案项目数 |
||||
|
*/ |
||||
|
private Integer closedIncr; |
||||
|
|
||||
|
} |
@ -0,0 +1,96 @@ |
|||||
|
/** |
||||
|
* 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.entity.evaluationindex.indexcoll; |
||||
|
|
||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||
|
|
||||
|
import com.epmet.commons.mybatis.entity.BaseEpmetEntity; |
||||
|
import lombok.Data; |
||||
|
import lombok.EqualsAndHashCode; |
||||
|
|
||||
|
import java.util.Date; |
||||
|
|
||||
|
/** |
||||
|
* 项目(事件)数量分析按组织_按月统计 |
||||
|
* |
||||
|
* @author generator generator@elink-cn.com |
||||
|
* @since v1.0.0 2021-01-27 |
||||
|
*/ |
||||
|
@Data |
||||
|
@EqualsAndHashCode(callSuper=false) |
||||
|
@TableName("screen_project_quantity_org_monthly") |
||||
|
public class ScreenProjectQuantityOrgMonthlyEntity extends BaseEpmetEntity { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
/** |
||||
|
* 客户ID |
||||
|
*/ |
||||
|
private String customerId; |
||||
|
|
||||
|
/** |
||||
|
* 日期yyyyMMdd |
||||
|
*/ |
||||
|
private String monthId; |
||||
|
|
||||
|
/** |
||||
|
* 组织id |
||||
|
*/ |
||||
|
private String orgId; |
||||
|
|
||||
|
/** |
||||
|
* 社区级:community,乡(镇、街道)级:street,区县级: district,市级: city省级:province |
||||
|
*/ |
||||
|
private String orgType; |
||||
|
|
||||
|
/** |
||||
|
* 当前orgId所属的上级id |
||||
|
*/ |
||||
|
private String pid; |
||||
|
|
||||
|
/** |
||||
|
* orgId所有的父级id,以英文:或者英文,隔开 |
||||
|
*/ |
||||
|
private String pids; |
||||
|
|
||||
|
/** |
||||
|
* 当前组织内,本月新增的项目数量:转项目日期在当前月份内 |
||||
|
*/ |
||||
|
private Integer projectIncr; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计项目总数 |
||||
|
*/ |
||||
|
private Integer projectTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计未结项目总数 |
||||
|
*/ |
||||
|
private Integer unClosedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 截止到当前月份:累计已结项目 |
||||
|
*/ |
||||
|
private Integer closedTotal; |
||||
|
|
||||
|
/** |
||||
|
* 本月新增结案项目数 |
||||
|
*/ |
||||
|
private Integer closedIncr; |
||||
|
|
||||
|
} |
@ -0,0 +1,9 @@ |
|||||
|
package com.epmet.service.evaluationindex.indexcoll; |
||||
|
|
||||
|
/** |
||||
|
* @Description 事件/项目大屏数据采集service |
||||
|
* @author wangc |
||||
|
* @date 2021.01.27 17:19 |
||||
|
*/ |
||||
|
public interface ScreenProjectDataCollService { |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
package com.epmet.service.evaluationindex.indexcoll.impl; |
||||
|
|
||||
|
import com.epmet.commons.dynamic.datasource.annotation.DataSource; |
||||
|
import com.epmet.constant.DataSourceConstant; |
||||
|
import com.epmet.dao.evaluationindex.indexcoll.*; |
||||
|
import com.epmet.service.evaluationindex.indexcoll.ScreenProjectDataCollService; |
||||
|
import lombok.extern.slf4j.Slf4j; |
||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||
|
import org.springframework.stereotype.Service; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @ClassName ScreenProjectDataCollServiceImpl |
||||
|
* @Auth wangc |
||||
|
* @Date 2021-01-27 17:20 |
||||
|
*/ |
||||
|
@Slf4j |
||||
|
@Service |
||||
|
@DataSource(DataSourceConstant.EVALUATION_INDEX) |
||||
|
public class ScreenProjectDataCollServiceImpl implements ScreenProjectDataCollService { |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectCategoryGridDailyDao categoryGridDailyDao; |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectCategoryOrgDailyDao categoryOrgDailyDao; |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectGridDailyDao gridDailyDao; |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectOrgDailyDao orgDailyDao; |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectQuantityGridMonthlyDao quantityGridMonthlyDao; |
||||
|
|
||||
|
@Autowired |
||||
|
private ScreenProjectQuantityOrgMonthlyDao quantityOrgMonthlyDao; |
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectCategoryGridDailyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectCategoryGridDailyEntity" id="screenProjectCategoryGridDailyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="dateId" column="DATE_ID"/> |
||||
|
<result property="gridId" column="GRID_ID"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="epmetCategoryCode" column="CATEGORY_CODE"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="pendingTotal" column="PENDING_TOTAL"/> |
||||
|
<result property="closedTotal" column="CLOSED_TOTAL"/> |
||||
|
<result property="unResolvedTotal" column="UN_RESOLVED_TOTAL"/> |
||||
|
<result property="resolvedTotal" column="RESOLVED_TOTAL"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,29 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectCategoryOrgDailyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectCategoryOrgDailyEntity" id="screenProjectCategoryOrgDailyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="dateId" column="DATE_ID"/> |
||||
|
<result property="orgId" column="ORG_ID"/> |
||||
|
<result property="orgType" column="ORG_TYPE"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="epmetCategoryCode" column="CATEGORY_CODE"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="pendingTotal" column="PENDING_TOTAL"/> |
||||
|
<result property="closedTotal" column="CLOSED_TOTAL"/> |
||||
|
<result property="unResolvedTotal" column="UN_RESOLVED_TOTAL"/> |
||||
|
<result property="resolvedTotal" column="RESOLVED_TOTAL"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,30 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectGridDailyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectGridDailyEntity" id="screenProjectGridDailyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="dateId" column="DATE_ID"/> |
||||
|
<result property="gridId" column="GRID_ID"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="resolvedNum" column="RESOLVED_NUM"/> |
||||
|
<result property="resolvedRatio" column="RESOLVED_RATIO"/> |
||||
|
<result property="evaluateTotal" column="EVALUATE_TOTAL"/> |
||||
|
<result property="goodTotal" column="GOOD_TOTAL"/> |
||||
|
<result property="badTotal" column="BAD_TOTAL"/> |
||||
|
<result property="goodRatio" column="GOOD_RATIO"/> |
||||
|
<result property="badRatio" column="BAD_RATIO"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,31 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectOrgDailyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectOrgDailyEntity" id="screenProjectOrgDailyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="dateId" column="DATE_ID"/> |
||||
|
<result property="orgId" column="ORG_ID"/> |
||||
|
<result property="orgType" column="ORG_TYPE"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="resolvedNum" column="RESOLVED_NUM"/> |
||||
|
<result property="resolvedRatio" column="RESOLVED_RATIO"/> |
||||
|
<result property="evaluateTotal" column="EVALUATE_TOTAL"/> |
||||
|
<result property="goodTotal" column="GOOD_TOTAL"/> |
||||
|
<result property="badTotal" column="BAD_TOTAL"/> |
||||
|
<result property="goodRatio" column="GOOD_RATIO"/> |
||||
|
<result property="badRatio" column="BAD_RATIO"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,27 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectQuantityGridMonthlyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectQuantityGridMonthlyEntity" id="screenProjectQuantityGridMonthlyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="monthId" column="MONTH_ID"/> |
||||
|
<result property="gridId" column="GRID_ID"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="projectIncr" column="PROJECT_INCR"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="unClosedTotal" column="UN_CLOSED_TOTAL"/> |
||||
|
<result property="closedTotal" column="CLOSED_TOTAL"/> |
||||
|
<result property="closedIncr" column="CLOSED_INCR"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
@ -0,0 +1,28 @@ |
|||||
|
<?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.dao.evaluationindex.indexcoll.ScreenProjectQuantityOrgMonthlyDao"> |
||||
|
|
||||
|
<resultMap type="com.epmet.entity.evaluationindex.indexcoll.ScreenProjectQuantityOrgMonthlyEntity" id="screenProjectQuantityOrgMonthlyMap"> |
||||
|
<result property="id" column="ID"/> |
||||
|
<result property="customerId" column="CUSTOMER_ID"/> |
||||
|
<result property="monthId" column="MONTH_ID"/> |
||||
|
<result property="orgId" column="ORG_ID"/> |
||||
|
<result property="orgType" column="ORG_TYPE"/> |
||||
|
<result property="pid" column="PID"/> |
||||
|
<result property="pids" column="PIDS"/> |
||||
|
<result property="projectIncr" column="PROJECT_INCR"/> |
||||
|
<result property="projectTotal" column="PROJECT_TOTAL"/> |
||||
|
<result property="unClosedTotal" column="UN_CLOSED_TOTAL"/> |
||||
|
<result property="closedTotal" column="CLOSED_TOTAL"/> |
||||
|
<result property="closedIncr" column="CLOSED_INCR"/> |
||||
|
<result property="delFlag" column="DEL_FLAG"/> |
||||
|
<result property="revision" column="REVISION"/> |
||||
|
<result property="createdBy" column="CREATED_BY"/> |
||||
|
<result property="createdTime" column="CREATED_TIME"/> |
||||
|
<result property="updatedBy" column="UPDATED_BY"/> |
||||
|
<result property="updatedTime" column="UPDATED_TIME"/> |
||||
|
</resultMap> |
||||
|
|
||||
|
|
||||
|
</mapper> |
Loading…
Reference in new issue