package pwc.taxtech.atms.dao; import java.util.List; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.session.RowBounds; import pwc.taxtech.atms.MyMapper; import pwc.taxtech.atms.entitiy.AccountMapping; import pwc.taxtech.atms.entitiy.AccountMappingExample; @Mapper public interface AccountMappingMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ long countByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int deleteByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int deleteByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int insert(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int insertSelective(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ List<AccountMapping> selectByExampleWithRowbounds(AccountMappingExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ List<AccountMapping> selectByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ AccountMapping selectByPrimaryKey(String ID); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int updateByExampleSelective(@Param("record") AccountMapping record, @Param("example") AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int updateByExample(@Param("record") AccountMapping record, @Param("example") AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int updateByPrimaryKeySelective(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table AccountMapping * * @mbg.generated */ int updateByPrimaryKey(AccountMapping record); }