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 selectByExampleWithBLOBs(SysTaskExample example); List 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); }