From df0b661a98cd5e91fbbbba08e54dc610076517c0 Mon Sep 17 00:00:00 2001 From: zhaowenxuan <chacca165@163.com> Date: 星期四, 18 七月 2024 17:04:28 +0800 Subject: [PATCH] pdf去除页眉增加页码调整检验医师边距 --- ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjExamJcsqdServiceImpl.java | 27 +++++++++++++++++++++++++++ 1 files changed, 27 insertions(+), 0 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjExamJcsqdServiceImpl.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjExamJcsqdServiceImpl.java index e3ab2cc..987748f 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjExamJcsqdServiceImpl.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjExamJcsqdServiceImpl.java @@ -7,7 +7,11 @@ import com.ltkj.hosp.service.LtkjExamJcsqdService; import com.ltkj.hosp.sqlDomain.LtkjExamJcbgd; import com.ltkj.hosp.sqlDomain.LtkjExamJcsqd; +import com.ltkj.hosp.sqlDomain.LtkjHysqd; import org.springframework.stereotype.Service; + +import javax.annotation.Resource; +import java.util.List; /** * 鐥呯+鎰忚Service涓氬姟灞傚鐞� @@ -18,4 +22,27 @@ @Service public class LtkjExamJcsqdServiceImpl extends ServiceImpl<LtkjExamJcsqdMapper, LtkjExamJcsqd> implements LtkjExamJcsqdService { + @Resource + private LtkjExamJcsqdMapper mapper; + + + @Override + public LtkjExamJcsqd getLtkjJcsqdByTjhAndTmh(String tjh, String tmh) { + return mapper.getLtkjJcsqdByTjhAndTmh(tjh,tmh); + } + + @Override + public void deletedLtkjJcsqdByTjhAndTmh(String tjh, String tmh) { + mapper.deletedLtkjJcsqdByTjhAndTmh(tjh,tmh); + } + + @Override + public List<LtkjExamJcsqd> getLtkjJcsqdByTjh(String tjh) { + return mapper.getLtkjJcsqdByTjh(tjh); + } + + @Override + public void saveLtkjExamJcsqd(String tjh) { + mapper.saveLtkjExamJcsqd(tjh); + } } -- Gitblit v1.8.0