From aa4a9a6f2f40f57fc725ebcd5a6c09d34921f0eb Mon Sep 17 00:00:00 2001 From: 赵文轩 <1652863494@qq.com> Date: 星期五, 07 六月 2024 10:23:06 +0800 Subject: [PATCH] hisAPI配置 --- ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCustomerServiceImpl.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCustomerServiceImpl.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCustomerServiceImpl.java index ec6b0b5..5dba257 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCustomerServiceImpl.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjCustomerServiceImpl.java @@ -1,5 +1,6 @@ package com.ltkj.hosp.service.impl; +import java.sql.ResultSet; import java.util.List; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; @@ -100,4 +101,14 @@ public TjCustomer getTjCustomerByCusIdCard(String cusIdCard) { return tjCustomerMapper.getTjCustomerByCusIdCard(cusIdCard); } + + @Override + public ResultSet getJsonParseCustomerList(String deptId, Integer page, Integer pageSize, String cusName, String tjNumber) { + return tjCustomerMapper.getJsonParseCustomerList(deptId,page,pageSize,cusName,tjNumber); + } + + @Override + public String getCompNameByCusId(String cusId) { + return tjCustomerMapper.getCompNameByCusId(cusId); + } } -- Gitblit v1.8.0