AccountMappingManualMapper.java 3.33 KB
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.AccountMappingManual;
import pwc.taxtech.atms.entitiy.AccountMappingManualExample;

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

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

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

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

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

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

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

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

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

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

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

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