From b7df6735bcb2d447cae7fcfba2d12accf3dd2fcc Mon Sep 17 00:00:00 2001 From: linwei <872216696@qq.com> Date: Sat, 03 Feb 2024 17:27:21 +0800 Subject: [PATCH] 消防检查优化 --- src/main/java/org/springblade/modules/house/mapper/UserHouseLabelMapper.java | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 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 a822c9c..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,14 +16,16 @@ */ package org.springblade.modules.house.mapper; -import org.springblade.modules.house.entity.UserHouseLabelEntity; -import org.springblade.modules.house.vo.HouseLabelVO; 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 java.util.List; /** - * 房屋-标签 Mapper 接口 + * 住户-标签 Mapper 接口 * * @author BladeX * @since 2023-10-28 @@ -34,10 +36,14 @@ * 自定义分页 * * @param page - * @param houseLabel + * @param householdLabel * @return */ - List<HouseLabelVO> selectHouseLabelPage(IPage page, HouseLabelVO houseLabel); + List<HouseholdLabelVO> selectHouseLabelPage(IPage page, HouseholdLabelVO householdLabel); + List<Integer> getUserLabelList(UserHouseLabelDTO userHouseLabelDTO); + List<HouseholdLabelVO> statisticalLabels(IPage page, HouseholdLabelVO householdLabel); + + List<HouseholdLabelVO> getCommunityStatisticalLabels(IPage<HouseholdLabelVO> page, HouseholdLabelVO householdLabel); } -- Gitblit v1.9.3