| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.gkhy.assess.system.domain.AssInvestigation; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * <p> |
| | | * 现场勘验记录表 服务类 |
| | |
| | | * @param investigation |
| | | * @return |
| | | */ |
| | | int addInvestigation(AssInvestigation investigation,String requestSourceType); |
| | | Long addInvestigation(AssInvestigation investigation); |
| | | |
| | | /** |
| | | * 修改勘验记录 |
| | |
| | | * @param projectId |
| | | * @return |
| | | */ |
| | | AssInvestigation getInvestigationByProjectId(Long projectId); |
| | | List<AssInvestigation> getInvestigationByProjectId(Long projectId); |
| | | |
| | | |
| | | /** |
| | |
| | | |
| | | /** |
| | | * 项目状态流转 |
| | | * @param projectId |
| | | * @param map |
| | | */ |
| | | void doInvestigationProcess(Long projectId); |
| | | void doInvestigationProcess(Map map); |
| | | |
| | | } |