| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- package com.goafanti.common.dao;
- import com.goafanti.common.model.TaskFeature;
- import com.goafanti.common.model.TaskFeatureLog;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.data.domain.Pageable;
- import java.util.List;
- /**
- * 项目申报详情日志(TaskFeatureLog)表数据库访问层
- *
- * @author makejava
- * @since 2025-01-02 15:36:11
- */
- public interface TaskFeatureLogMapper {
- /**
- * 通过ID查询单条数据
- *
- * @param id 主键
- * @return 实例对象
- */
- TaskFeatureLog selectById(Integer id);
-
- /**
- * 查询指定行数据
- *
- * @param taskFeatureLog 查询条件
- * @param pageable 分页对象
- * @return 对象列表
- */
- List<TaskFeatureLog> findTaskFeatureLogList(TaskFeatureLog taskFeatureLog, @Param("pageable") Pageable pageable);
- /**
- * 统计总行数
- *
- * @param taskFeatureLog 查询条件
- * @return 总行数
- */
- int findTaskFeatureLogCount(TaskFeatureLog taskFeatureLog);
- /**
- * 新增数据
- *
- * @param taskFeatureLog 实例对象
- * @return 影响行数
- */
- int insert(TaskFeatureLog taskFeatureLog);
- /**
- * 批量新增数据(MyBatis原生foreach方法)
- *
- * @param entities List<TaskFeatureLog> 实例对象列表
- * @return 影响行数
- */
- int insertBatch(@Param("entities") List<TaskFeatureLog> entities);
- /**
- * 批量新增或按主键更新数据(MyBatis原生foreach方法)
- *
- * @param entities List<TaskFeatureLog> 实例对象列表
- * @return 影响行数
- * @throws org.springframework.jdbc.BadSqlGrammarException 入参是空List的时候会抛SQL语句错误的异常,请自行校验入参
- */
- int insertOrUpdateBatch(@Param("entities") List<TaskFeatureLog> entities);
- /**
- * 修改数据
- *
- * @param taskFeatureLog 实例对象
- * @return 影响行数
- */
- int update(TaskFeatureLog taskFeatureLog);
- /**
- * 通过主键删除数据
- *
- * @param id 主键
- * @return 影响行数
- */
- int deleteById(Integer id);
- List<TaskFeature> selectByTdlid(Integer tdlId);
- }
|