| | |
| | | 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业务层处理 |
| | |
| | | @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); |
| | | } |
| | | } |