From b3162ed4712c2c85a9c18116a7547440edc41c93 Mon Sep 17 00:00:00 2001
From: linwe <872216996@qq.com>
Date: Fri, 17 Nov 2023 15:15:05 +0800
Subject: [PATCH] 住户管理代码

---
 src/main/java/org/springblade/modules/house/wrapper/HouseholdLabelWrapper.java |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/springblade/modules/house/wrapper/HouseholdLabelWrapper.java b/src/main/java/org/springblade/modules/house/wrapper/HouseholdLabelWrapper.java
index fe63e0b..06b5feb 100644
--- a/src/main/java/org/springblade/modules/house/wrapper/HouseholdLabelWrapper.java
+++ b/src/main/java/org/springblade/modules/house/wrapper/HouseholdLabelWrapper.java
@@ -18,7 +18,7 @@
 
 import org.springblade.core.mp.support.BaseEntityWrapper;
 import org.springblade.core.tool.utils.BeanUtil;
-import org.springblade.modules.house.entity.HouseholdLabelEntity;
+import org.springblade.modules.house.entity.UserHouseLabelEntity;
 import org.springblade.modules.house.vo.HouseholdLabelVO;
 import java.util.Objects;
 
@@ -28,14 +28,14 @@
  * @author BladeX
  * @since 2023-10-28
  */
-public class HouseholdLabelWrapper extends BaseEntityWrapper<HouseholdLabelEntity, HouseholdLabelVO>  {
+public class HouseholdLabelWrapper extends BaseEntityWrapper<UserHouseLabelEntity, HouseholdLabelVO>  {
 
 	public static HouseholdLabelWrapper build() {
 		return new HouseholdLabelWrapper();
  	}
 
 	@Override
-	public HouseholdLabelVO entityVO(HouseholdLabelEntity householdLabel) {
+	public HouseholdLabelVO entityVO(UserHouseLabelEntity householdLabel) {
 		HouseholdLabelVO householdLabelVO = Objects.requireNonNull(BeanUtil.copy(householdLabel, HouseholdLabelVO.class));
 
 		//User createUser = UserCache.getUser(householdLabel.getCreateUser());

--
Gitblit v1.9.3