*
lsh
2025-04-09 62a19bf40e747ab986645728d65a63b927eddb6e
1
2
3
4
5
6
7
8
9
10
package com.zy.asrs.service;
 
import com.zy.asrs.entity.ApiConfig;
import com.baomidou.mybatisplus.service.IService;
 
public interface ApiConfigService extends IService<ApiConfig> {
 
    ApiConfig selectByUrl(String url);
 
}