From c0fa64f0fa74ac4fef06e1b472031a32c3be42fa Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Sat, 23 Mar 2024 18:12:28 +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