package pwc.taxtech.atms.vat.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.MyVatMapper; import pwc.taxtech.atms.vat.entity.InvoiceMapping; import pwc.taxtech.atms.vat.entity.InvoiceMappingExample; @Mapper public interface InvoiceMappingMapper extends MyVatMapper { /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ long countByExample(InvoiceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int deleteByExample(InvoiceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int deleteByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int insert(InvoiceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int insertSelective(InvoiceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ List<InvoiceMapping> selectByExampleWithRowbounds(InvoiceMappingExample example, RowBounds rowBounds); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ List<InvoiceMapping> selectByExample(InvoiceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ InvoiceMapping selectByPrimaryKey(String id); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int updateByExampleSelective(@Param("record") InvoiceMapping record, @Param("example") InvoiceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int updateByExample(@Param("record") InvoiceMapping record, @Param("example") InvoiceMappingExample example); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int updateByPrimaryKeySelective(InvoiceMapping record); /** * This method was generated by MyBatis Generator. * This method corresponds to the database table TAX_PROJECT.INVOICE_MAPPING * * @mbg.generated */ int updateByPrimaryKey(InvoiceMapping record); }