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.IndexAnalysisDetailResult;
import pwc.taxtech.atms.vat.entity.IndexAnalysisDetailResultExample;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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