package pwc.taxtech.atms.vatDao;

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.vatEntitiy.OutputVATInvoice;
import pwc.taxtech.atms.vatEntitiy.OutputVATInvoiceExample;

@Mapper
public interface OutputVATInvoiceMapper extends MyVatMapper {
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    long countByExample(OutputVATInvoiceExample example);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int deleteByExample(OutputVATInvoiceExample example);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int deleteByPrimaryKey(String invoiceID);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int insert(OutputVATInvoice record);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int insertSelective(OutputVATInvoice record);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    List<OutputVATInvoice> selectByExampleWithRowbounds(OutputVATInvoiceExample example, RowBounds rowBounds);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    List<OutputVATInvoice> selectByExample(OutputVATInvoiceExample example);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    OutputVATInvoice selectByPrimaryKey(String invoiceID);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int updateByExampleSelective(@Param("record") OutputVATInvoice record, @Param("example") OutputVATInvoiceExample example);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int updateByExample(@Param("record") OutputVATInvoice record, @Param("example") OutputVATInvoiceExample example);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int updateByPrimaryKeySelective(OutputVATInvoice record);

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OutputVATInvoice
     *
     * @mbg.generated
     */
    int updateByPrimaryKey(OutputVATInvoice record);
}