|
@@ -1,11 +1,11 @@
|
|
|
package com.goafanti.common.dao;
|
|
package com.goafanti.common.dao;
|
|
|
|
|
|
|
|
import com.goafanti.common.model.TaskDetailsLog;
|
|
import com.goafanti.common.model.TaskDetailsLog;
|
|
|
|
|
+import com.goafanti.techproject.bo.OutTaskDetailsLog;
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
import org.springframework.data.domain.Pageable;
|
|
import org.springframework.data.domain.Pageable;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 项目申报详情日志(TaskDetailsLog)表数据库访问层
|
|
* 项目申报详情日志(TaskDetailsLog)表数据库访问层
|
|
@@ -82,6 +82,6 @@ public interface TaskDetailsLogMapper {
|
|
|
*/
|
|
*/
|
|
|
int deleteById(Integer id);
|
|
int deleteById(Integer id);
|
|
|
|
|
|
|
|
- List<Map<String,Object>> selectByTid(Integer id);
|
|
|
|
|
|
|
+ List<OutTaskDetailsLog> selectByTid(Integer id);
|
|
|
}
|
|
}
|
|
|
|
|
|