zjh
2025-01-15 5489d624e6642b459ecf8d143c548ac8a980a8c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.mapper.LtkjExamJcbgdMapper;
import com.ltkj.hosp.mapper.LtkjMiddleDetailMapper;
import com.ltkj.hosp.service.LtkjExamJcbgdService;
import com.ltkj.hosp.service.LtkjMiddleDetailService;
import com.ltkj.hosp.sqlDomain.LtkjExamJcbgd;
import com.ltkj.hosp.sqlDomain.LtkjHybgd;
import com.ltkj.hosp.sqlDomain.LtkjMiddleDetail;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.List;
 
/**
 * 病种+意见Service业务层处理
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-08-30
 */
@Service
public class LtkjExamJcbgdServiceImpl extends ServiceImpl<LtkjExamJcbgdMapper, LtkjExamJcbgd> implements LtkjExamJcbgdService {
 
    @Resource
    private LtkjExamJcbgdMapper mapper;
 
    @Override
    public void deletedLtkjJcbgdByTjhAndTmh(String tmh) {
        mapper.deletedLtkjJcbgdByTjhAndTmh(tmh);
    }
 
    @Override
    public List<String> getJianJcBaoGaoDan(String cardId) {
        return mapper.getJianJcBaoGaoDan(cardId);
    }
 
    @Override
    public List<LtkjExamJcbgd> getJianJcBaoGaoDanList(String tmh) {
        return mapper.getJianJcBaoGaoDanList(tmh);
    }
 
    @Override
    public List<LtkjExamJcbgd> getJianJcBaoGaoDanByTjh(String cardId) {
        return mapper.getJianJcBaoGaoDanByTjh(cardId);
    }
}