You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
365 B
13 lines
365 B
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);
|
|
}
|
|
|