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.OperationLogEnterPrise;
import pwc.taxtech.atms.entitiy.OperationLogEnterPriseExample;

@Mapper
public interface OperationLogEnterPriseMapper extends MyMapper {
    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table OperationLogEnterPrise
     *
     * @mbg.generated
     */
    long countByExample(OperationLogEnterPriseExample example);

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

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

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

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

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

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

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

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

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

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

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