From 06df33f156924c564c17b11fdb96c5bb298a810d Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Wed, 07 Aug 2024 11:28:29 +0800
Subject: [PATCH] 三色任务和自查任务

---
 src/main/java/org/springblade/modules/house/service/impl/UserHouseLabelServiceImpl.java |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/src/main/java/org/springblade/modules/house/service/impl/UserHouseLabelServiceImpl.java b/src/main/java/org/springblade/modules/house/service/impl/UserHouseLabelServiceImpl.java
index 197f5d3..6be49ba 100644
--- a/src/main/java/org/springblade/modules/house/service/impl/UserHouseLabelServiceImpl.java
+++ b/src/main/java/org/springblade/modules/house/service/impl/UserHouseLabelServiceImpl.java
@@ -29,6 +29,7 @@
 import org.springblade.modules.house.mapper.UserHouseLabelMapper;
 import org.springblade.modules.house.service.IUserHouseLabelService;
 import org.springblade.modules.house.vo.HouseholdLabelVO;
+import org.springblade.modules.house.vo.UserHouseLabelVO;
 import org.springblade.modules.label.entity.LabelEntity;
 import org.springblade.modules.label.service.ILabelService;
 import org.springblade.modules.label.service.impl.LabelServiceImpl;
@@ -155,4 +156,9 @@
 	public List<UserHouseLabelEntity> getLabelList(String labelName) {
 		return baseMapper.getLabelList(labelName);
 	}
+
+	@Override
+	public List<UserHouseLabelEntity> getUserHouseLabelList(UserHouseLabelVO userHouseLabelVO) {
+		return baseMapper.getUserHouseLabelList(userHouseLabelVO);
+	}
 }

--
Gitblit v1.9.3