123456789101112131415161718192021222324252627282930313233343536 |
- package com.hz.employmentsite.mapper;
- import com.hz.employmentsite.model.SysTask;
- import com.hz.employmentsite.model.SysTaskExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface SysTaskMapper {
- long countByExample(SysTaskExample example);
- int deleteByExample(SysTaskExample example);
- int deleteByPrimaryKey(String taskID);
- int insert(SysTask row);
- int insertSelective(SysTask row);
- List<SysTask> selectByExampleWithBLOBs(SysTaskExample example);
- List<SysTask> selectByExample(SysTaskExample example);
- SysTask selectByPrimaryKey(String taskID);
- int updateByExampleSelective(@Param("row") SysTask row, @Param("example") SysTaskExample example);
- int updateByExampleWithBLOBs(@Param("row") SysTask row, @Param("example") SysTaskExample example);
- int updateByExample(@Param("row") SysTask row, @Param("example") SysTaskExample example);
- int updateByPrimaryKeySelective(SysTask row);
- int updateByPrimaryKeyWithBLOBs(SysTask row);
- int updateByPrimaryKey(SysTask row);
- }
|