#
CP
2024-12-23 076e48718ae6c9232fbb51168d198af5c1481f6c
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);
 
}