zjh
2024-06-07 a0385d39fd55aaf45f43e2e12e446b9c933efc1c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.HisApiConfig;
import com.ltkj.hosp.service.HisApiConfigService;
import com.ltkj.hosp.mapper.HisApiConfigMapper;
import org.springframework.stereotype.Service;
 
/**
* @author chacca
* @description 针对表【his_api_config(his请求API管理表)】的数据库操作Service实现
* @createDate 2024-06-06 20:24:30
*/
@Service
public class HisApiConfigServiceImpl extends ServiceImpl<HisApiConfigMapper, HisApiConfig>
    implements HisApiConfigService{
 
}