zhongrj
2024-04-12 47712cc6cd4d52fcd1dde44e2a400ccbb9c6ae7a
src/main/java/org/springblade/modules/task/service/ITaskPlaceSelfCheckService.java
@@ -16,6 +16,7 @@
 */
package org.springblade.modules.task.service;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.IService;
import org.springblade.modules.task.dto.TaskPlaceSelfCheckDTO;
import org.springblade.modules.task.entity.TaskPlaceSelfCheckEntity;
@@ -58,9 +59,9 @@
   public List<TaskPlaceSelfCheckDTO> selectTaskPlaceSelfCheckList(TaskPlaceSelfCheckDTO taskPlaceSelfCheckDTO);
   Boolean savePlace(TaskPlaceSelfCheckVO taskPlaceSelfCheck) throws Exception;
   Boolean savePlace(TaskPlaceSelfCheckVO taskPlaceSelfCheck) ;
   Boolean updateTaskPlaceSelfCheck(TaskPlaceSelfCheckVO taskPlaceSelfCheck) throws Exception;
   Boolean updateTaskPlaceSelfCheck(TaskPlaceSelfCheckVO taskPlaceSelfCheck);
   /**
    * 导出消防自查信息
@@ -70,4 +71,11 @@
   List<TaskPlaceSelfCheckExcel> exportTaskPlaceSelfCheck(TaskPlaceSelfCheckVO taskPlaceSelfCheck);
    Integer getCount(String neiCode, int i);
   /**
    *
    * @param taskId
    * @return
    */
   TaskPlaceSelfCheckEntity getDetailByTaskId(Long taskId);
}