package com.hfkj.dao; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; /** * mapper扩展类 */ public interface BsAgentApiLogMapperExt { @Select("select count(1) from bs_agent_api_log where app_id = #{appId} and request_id = #{reqId}") int isExist(@Param("appId") String appId, @Param("reqId") String reqId); }