zhaowenxuan
9 天以前 2a9583fd376451ca77a0400af7f3a02d1b80e7f5
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.DictCommonHisConfig;
import com.ltkj.hosp.service.DictCommonHisConfigService;
import com.ltkj.hosp.mapper.DictCommonHisConfigMapper;
import org.springframework.stereotype.Service;
 
/**
* @author w
* @description 针对表【dict_common_his_config(公共组件服务HIS请求管理)】的数据库操作Service实现
* @createDate 2025-06-24 10:18:32
*/
@Service
public class DictCommonHisConfigServiceImpl extends ServiceImpl<DictCommonHisConfigMapper, DictCommonHisConfig>
    implements DictCommonHisConfigService{
 
}