From 02fe533245eb42140b98e55eec7cfab673e2bd44 Mon Sep 17 00:00:00 2001 From: Administrator <zhubaomin> Date: 星期六, 23 十二月 2023 11:16:29 +0800 Subject: [PATCH] 2023-12-23 朱宝民 开卡、补卡、充值重构,开卡/补卡记录查询改为参数传递 --- pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDistrictMapper.java | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDistrictMapper.java b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDistrictMapper.java index abfb214..b941586 100644 --- a/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDistrictMapper.java +++ b/pipIrr-platform/pipIrr-global/src/main/java/com/dy/pipIrrGlobal/daoBa/BaDistrictMapper.java @@ -3,8 +3,10 @@ import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoBa.BaDistrict; import org.apache.ibatis.annotations.Mapper; +import org.apache.ibatis.annotations.Param; import java.util.List; +import java.util.Map; @Mapper public interface BaDistrictMapper extends BaseMapper<BaDistrict> { @@ -35,7 +37,7 @@ * @param record the record * @return insert count */ - int insert(BaDistrict record); + int putin(BaDistrict record); /** * insert record to table selective @@ -73,4 +75,11 @@ */ int deleteLogicById(Long id); + /** + * 鏍规嵁鏉戠紪鍙疯幏鍙�5绾у尯鍒掍俊鎭� + * @param villageId 鏉戠紪鍙凤紙涓婚敭锛� + * @return 5绾ц鏀垮尯鍒掍俊鎭� + */ + Map getDistrictsByVillageId(@Param("villageId") Long villageId); + } \ No newline at end of file -- Gitblit v1.8.0