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/mapper/TjFlowingWaterMapper.java | 19 +++++++++++++++++++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjFlowingWaterMapper.java b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjFlowingWaterMapper.java index 89f3d37..caeeb27 100644 --- a/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjFlowingWaterMapper.java +++ b/ltkj-hosp/src/main/java/com/ltkj/hosp/mapper/TjFlowingWaterMapper.java @@ -2,10 +2,12 @@ import java.util.Date; import java.util.List; +import java.util.Map; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ltkj.hosp.domain.TjFlowingWater; import com.ltkj.hosp.domain.TjOrderDetail; +import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; @@ -93,4 +95,21 @@ "AND a.pay_stasus !=0 " + "AND a.update_time BETWEEN #{beginTime} AND #{endTime}") List<Long> getFlowingWaterIdList(@Param("userId") String userId,@Param("beginTime") Date beginTime,@Param("endTime") Date endTime); + + @Delete(" delete" + + " from tj_flowing_water" + + " where order_id = #{order}") + public int deleteTjFlowingWaterByOrderId(String order); + + @Delete(" delete" + + " from tj_flowing_water" + + " where jxbz = #{bldh}") + void deleteTjOrderDetailByjxbz(String bldh); + + @Select("call tj_bl(#{tjh,mode=IN})") + void getTjBlCall(@Param("tjh") String tjh); + + + //瀛樺偍杩囩▼涓撶敤鎺ュ彛(鑾峰彇鍥綋缁撶畻浜哄憳鎯呭喌淇℃伅) + List<List<?>> gettuantijiesuanrenyuan(Map<String,Object> map); } -- Gitblit v1.8.0