zjh
2025-05-30 b7d7d80a8a9e9ac145a05b5e1d545b6b61fc0cc4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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<ApiConfigMapper, ApiConfig>
    implements ApiConfigService{
 
}