package com.ltkj.hosp.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ltkj.hosp.domain.ApiConfig; import com.ltkj.hosp.service.ApiConfigService; import com.ltkj.hosp.mapper.ApiConfigMapper; import org.springframework.stereotype.Service; /** * @author w * @description 针对表【api_config(三方请求API管理表)】的数据库操作Service实现 * @createDate 2024-09-18 09:35:47 */ @Service public class ApiConfigServiceImpl extends ServiceImpl implements ApiConfigService{ }