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.entity.AccountMapping; import pwc.taxtech.atms.entity.AccountMappingExample; @Mapper public interface AccountMappingMapper extends MyMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ long countByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int deleteByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int insert(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int insertSelective(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ List<AccountMapping> selectByExampleWithRowbounds(AccountMappingExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ List<AccountMapping> selectByExample(AccountMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ AccountMapping selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @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 TAX_ADMIN.ACCOUNT_MAPPING * * @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 TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int updateByPrimaryKeySelective(AccountMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_ADMIN.ACCOUNT_MAPPING * * @mbg.generated */ int updateByPrimaryKey(AccountMapping record); }