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.CellDataSource;
import pwc.taxtech.atms.vatEntitiy.CellDataSourceExample;

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

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

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

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

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

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

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

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

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

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

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

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