package com.ltkj.hosp.service.impl; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ltkj.hosp.mapper.LtkjExamJcsqdMapper; import com.ltkj.hosp.mapper.LtkjHybgdMapper; import com.ltkj.hosp.service.LtkjExamJcsqdService; import com.ltkj.hosp.service.LtkjHybgdService; import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd; import com.ltkj.hosp.sqlDomain.LtkjHybgd; import org.springframework.stereotype.Service; import javax.annotation.Resource; import java.util.List; /** * 病种+意见Service业务层处理 * * @author ltkj_赵佳豪&李格 * @date 2023-08-30 */ @Service public class LtkjHybgdServiceImpl extends ServiceImpl implements LtkjHybgdService { @Resource private LtkjHybgdMapper mapper; @Override public void deletedLtkjHybgdByTjhAndTmh(String tmh) { mapper.deletedLtkjHybgdByTjhAndTmh(tmh); } @Override public List getJianYanBaoGaoDan(String cardId) { return mapper.getJianYanBaoGaoDan(cardId); } @Override public List getJianYanBaoGaoDanList(String tmh) { return mapper.getJianYanBaoGaoDanList(tmh); } @Override public List getJianChaBaoGaoDan(String cardId) { return mapper.getJianChaBaoGaoDan(cardId); } }