|
@ -18,12 +18,10 @@ |
|
|
package com.epmet.dao.evaluationindex.extract; |
|
|
package com.epmet.dao.evaluationindex.extract; |
|
|
|
|
|
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
import com.epmet.dto.extract.result.OrgResponseTimeResultDTO; |
|
|
|
|
|
import com.epmet.dto.extract.result.OrgStatisticsResultDTO; |
|
|
import com.epmet.dto.extract.result.OrgStatisticsResultDTO; |
|
|
import com.epmet.entity.evaluationindex.extract.FactOriginProjectOrgPeriodDailyEntity; |
|
|
import com.epmet.entity.evaluationindex.extract.FactOriginProjectOrgPeriodDailyEntity; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
import org.apache.ibatis.annotations.Param; |
|
|
import org.apache.ibatis.annotations.Param; |
|
|
import org.springframework.web.bind.annotation.PostMapping; |
|
|
|
|
|
|
|
|
|
|
|
import java.util.List; |
|
|
import java.util.List; |
|
|
|
|
|
|
|
@ -45,15 +43,6 @@ public interface FactOriginProjectOrgPeriodDailyDao extends BaseDao<FactOriginPr |
|
|
**/ |
|
|
**/ |
|
|
int selectIfExisted(@Param("customerId") String customerId); |
|
|
int selectIfExisted(@Param("customerId") String customerId); |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 在插入之前,先删除所有与这个项目相关的历时信息 |
|
|
|
|
|
* @param projectId |
|
|
|
|
|
* @return |
|
|
|
|
|
* @author wangc |
|
|
|
|
|
* @date 2020.09.17 14:43 |
|
|
|
|
|
**/ |
|
|
|
|
|
void deleteByProjectId(@Param("projectId") String projectId); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 获取项目响应度 |
|
|
* 获取项目响应度 |
|
|
* @author zhaoqifeng |
|
|
* @author zhaoqifeng |
|
@ -85,24 +74,6 @@ public interface FactOriginProjectOrgPeriodDailyDao extends BaseDao<FactOriginPr |
|
|
**/ |
|
|
**/ |
|
|
void insertBatch(@Param("list") List<FactOriginProjectOrgPeriodDailyEntity> list); |
|
|
void insertBatch(@Param("list") List<FactOriginProjectOrgPeriodDailyEntity> list); |
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 查找网格、部门对项目的办结系数 |
|
|
|
|
|
* @param customerId |
|
|
|
|
|
* @return |
|
|
|
|
|
* @author wangc |
|
|
|
|
|
* @date 2020.09.21 02:13 |
|
|
|
|
|
**/ |
|
|
|
|
|
List<OrgResponseTimeResultDTO> selectSubOrgResponseCoefficient(@Param("customerId") String customerId,@Param("dimId") String dimId, @Param("dateType") String dateType); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* @Description 查找机关对项目的办结系数 |
|
|
|
|
|
* @param customerId |
|
|
|
|
|
* @return |
|
|
|
|
|
* @author wangc |
|
|
|
|
|
* @date 2020.09.21 02:13 |
|
|
|
|
|
**/ |
|
|
|
|
|
List<OrgResponseTimeResultDTO> selectAgencyResponseCoefficient(@Param("customerId") String customerId,@Param("dimId") String dimId, @Param("dateType") String dateType); |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* 部门处理效率统计 |
|
|
* 部门处理效率统计 |
|
|
* @author zhaoqifeng |
|
|
* @author zhaoqifeng |
|
|