zjh
2025-04-21 3f31a0466e7a706424d28aaab10bb70e2895bcfc
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
48
49
50
51
52
53
54
55
56
57
58
59
60
package com.ltkj.hosp.service.impl;
 
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ltkj.hosp.domain.TjCustomer;
import com.ltkj.hosp.domain.TjOrder;
import com.ltkj.hosp.mapper.LtkjExamJcsqdMapper;
import com.ltkj.hosp.mapper.LtkjHysqdMapper;
import com.ltkj.hosp.service.LtkjExamJcsqdService;
import com.ltkj.hosp.service.LtkjHysqdService;
import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd;
import com.ltkj.hosp.sqlDomain.LtkjHysqd;
import org.springframework.stereotype.Service;
 
import javax.annotation.Resource;
import java.util.Collections;
import java.util.Date;
import java.util.List;
 
/**
 * 病种+意见Service业务层处理
 *
 * @author ltkj_赵佳豪&李格
 * @date 2023-08-30
 */
@Service
public class LtkjHysqdServiceImpl extends ServiceImpl<LtkjHysqdMapper, LtkjHysqd> implements LtkjHysqdService {
 
    @Resource
    private LtkjHysqdMapper mapper;
 
    @Override
    public LtkjHysqd getLtkjHysqdByTjhAndTmh(String tjh, String tmh) {
        return mapper.getLtkjHysqdByTjhAndTmh(tjh,tmh);
    }
 
    @Override
    public void deletedLtkjHysqdByTjhAndTmh(String tjh, String tmh) {
        mapper.deletedLtkjHysqdByTjhAndTmh(tjh,tmh);
    }
 
    @Override
    public List<LtkjHysqd> getLtkjHysqdByTjh(String tjh) {
        return mapper.getLtkjHysqdByTjh(tjh);
    }
 
    @Override
    public List<TjCustomer> getCgYcXmList(Date strTime, Date endTime) {
        return mapper.getCgYcXmList(strTime,endTime);
    }
 
    @Override
    public List<TjCustomer> getHyYcXmList(Date strTime, Date endTime) {
        return mapper.getHyYcXmList(strTime,endTime);
    }
 
    @Override
    public int getHyYcXmCount(String cardId) {
        return mapper.getHyYcXmCount(cardId);
    }
}