From 348b2464bb5e500cb92c4e2d2819ed7ceb74c831 Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Mon, 11 Mar 2024 15:40:44 +0800 Subject: [PATCH] 场所详细查询返回绑定多个房屋的二维码编号和标准地址修改 --- src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java b/src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java index e9f3c08..d760555 100644 --- a/src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java +++ b/src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java @@ -16,11 +16,12 @@ */ package org.springblade.modules.house.mapper; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; import org.springblade.modules.house.dto.UserHouseLabelDTO; import org.springblade.modules.house.entity.UserHouseLabelEntity; import org.springblade.modules.house.vo.HouseholdLabelVO; -import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.core.metadata.IPage; + import java.util.List; /** @@ -42,4 +43,7 @@ List<Integer> getUserLabelList(UserHouseLabelDTO userHouseLabelDTO); + List<HouseholdLabelVO> statisticalLabels(IPage page, HouseholdLabelVO householdLabel); + + List<HouseholdLabelVO> getCommunityStatisticalLabels(IPage<HouseholdLabelVO> page, HouseholdLabelVO householdLabel); } -- Gitblit v1.9.3