|
|
@ -20,6 +20,7 @@ package com.epmet.dao.project; |
|
|
|
import com.epmet.commons.mybatis.dao.BaseDao; |
|
|
|
import com.epmet.dto.project.ProcessInfoDTO; |
|
|
|
import com.epmet.dto.project.result.ProjectOrgPeriodResultDTO; |
|
|
|
import com.epmet.dto.project.result.ProjectOrgRelationWhenResponseResultDTO; |
|
|
|
import com.epmet.entity.project.ProjectEntity; |
|
|
|
import com.epmet.entity.project.ProjectProcessEntity; |
|
|
|
import org.apache.ibatis.annotations.Mapper; |
|
|
@ -93,4 +94,12 @@ public interface ProjectProcessDao extends BaseDao<ProjectProcessEntity> { |
|
|
|
**/ |
|
|
|
List<ProjectOrgPeriodResultDTO> selectProjectOrgPeriod(@Param("customerId") String customerId,@Param("projectStatus")String projectStatus,@Param("dateId") String dateId); |
|
|
|
|
|
|
|
/** |
|
|
|
* @Description 查询项目-机关各个节点的响应列表 |
|
|
|
* @param projects |
|
|
|
* @return |
|
|
|
* @author wangc |
|
|
|
* @date 2020.09.17 17:56 |
|
|
|
**/ |
|
|
|
List<ProjectOrgRelationWhenResponseResultDTO> selectResponseTrace(@Param("projects") List<String> projects); |
|
|
|
} |