From dedacd79c93f8ef95e0cb986f5e7fbd27ddbd907 Mon Sep 17 00:00:00 2001
From: zhaowenxuan <chacca165@163.com>
Date: 星期四, 03 七月 2025 09:12:49 +0800
Subject: [PATCH] 2025-07-03

---
 ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjHysqdServiceImpl.java |   25 +++++++++++++++++++++++++
 1 files changed, 25 insertions(+), 0 deletions(-)

diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjHysqdServiceImpl.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjHysqdServiceImpl.java
index 7a90f41..6e3da02 100644
--- a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjHysqdServiceImpl.java
+++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/LtkjHysqdServiceImpl.java
@@ -1,6 +1,9 @@
 package com.ltkj.hosp.service.impl;
 
+import cn.hutool.json.JSONObject;
+import cn.hutool.json.JSONUtil;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
+import com.ltkj.common.core.domain.AjaxResult;
 import com.ltkj.hosp.domain.TjCustomer;
 import com.ltkj.hosp.domain.TjOrder;
 import com.ltkj.hosp.mapper.LtkjExamJcsqdMapper;
@@ -15,6 +18,7 @@
 import java.util.Collections;
 import java.util.Date;
 import java.util.List;
+import java.util.Map;
 
 /**
  * 鐥呯+鎰忚Service涓氬姟灞傚鐞�
@@ -62,4 +66,25 @@
     public void deletedByTjhAndXmId(String tjh, String xmid) {
         mapper.deletedByTjhAndXmId(tjh,xmid);
     }
+
+    @Override
+    public AjaxResult getAsyncDataByPro(String ksmc,String strIn,String brid,int pagecount,int page) {
+        List<Map<String, Object>> maps = mapper.getAsyncDataByPro(ksmc, strIn, brid, pagecount, page);
+        JSONObject entries = JSONUtil.createObj();
+        entries.putOpt("ResultCode","0");
+        entries.putOpt("ResultData",maps);
+        JSONObject object = JSONUtil.createObj();
+        object.putOpt("Response",entries);
+        return AjaxResult.success().put("data",object).put("code",0);
+    }
+
+    @Override
+    public List<Map<String ,Object>> getAsyncJybgdByPro(String strIn) {
+        return mapper.getAsyncHybgdDataByPro(strIn);
+    }
+
+    @Override
+    public List<Map<String, Object>> getAsyncJybgdWswByPro(String strIn) {
+        return mapper.getAsyncHybgdWswDataByPro(strIn);
+    }
 }

--
Gitblit v1.8.0