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.entity.StandardAccount;
import pwc.taxtech.atms.entity.StandardAccountExample;

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

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

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

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

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

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

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

    /**
     * This method was generated by MyBatis Generator.
     * This method corresponds to the database table TAX_ADMIN.STANDARD_ACCOUNT
     *
     * @mbg.generated
     */
    StandardAccount selectByPrimaryKey(String id);

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

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

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

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