From 5745a87f3a139ea2bbdaf4704978e4c151ecc45a Mon Sep 17 00:00:00 2001 From: linwei <872216696@qq.com> Date: Tue, 23 Jan 2024 17:39:48 +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