From 3620453ef3ebf3ba1542c180d942443a4a934d67 Mon Sep 17 00:00:00 2001 From: zjh <1084500556@qq.com> Date: 星期三, 25 六月 2025 18:05:04 +0800 Subject: [PATCH] zjh20250625 --- ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjFlowingWaterServiceImpl.java | 23 +++++++++++++++++++++-- 1 files changed, 21 insertions(+), 2 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjFlowingWaterServiceImpl.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjFlowingWaterServiceImpl.java index 5749bfe..f5fd8f4 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjFlowingWaterServiceImpl.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/service/impl/TjFlowingWaterServiceImpl.java @@ -1,7 +1,6 @@ package com.ltkj.hosp.service.impl; -import java.util.Date; -import java.util.List; +import java.util.*; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; import com.ltkj.common.utils.DateUtils; @@ -128,4 +127,24 @@ public void getTjBlCall(String tjh) { tjFlowingWaterMapper.getTjBlCall(tjh); } + + @Override + public Map<String, Object> gettuantijiesuanrenyuan(Integer page, Integer pageSize, + String dwId, String djkssj, String djjssj, String jskssj, String jsjssj, String tjh, String jsrid) { + Map<String, Object> map = new HashMap<>(); + map.put("page",page); + map.put("pageSize",pageSize); + map.put("dwId",dwId); + map.put("djkssj",djkssj); + map.put("djjssj",djjssj); + map.put("jskssj",jskssj); + map.put("jsjssj",jsjssj); + map.put("tjh",tjh); + map.put("jsrid",jsrid); + List<List<?>> list = tjFlowingWaterMapper.gettuantijiesuanrenyuan(map); + Map<String,Object> map1=new HashMap<>(); + map1.put("customers",list); + map1.put("total",map.get("total")); + return map1; + } } -- Gitblit v1.8.0