| package com.zy.asrs.mapper; | 
|   | 
| import com.baomidou.mybatisplus.mapper.BaseMapper; | 
| import com.zy.asrs.entity.ApiConfig; | 
| import org.apache.ibatis.annotations.Mapper; | 
| import org.springframework.stereotype.Repository; | 
|   | 
| @Mapper | 
| @Repository | 
| public interface ApiConfigMapper extends BaseMapper<ApiConfig> { | 
|   | 
|     ApiConfig selectByUrl(String url); | 
|   | 
| } |