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/mapper/HouseLabelMapper.java | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/main/java/org/springblade/modules/house/mapper/HouseholdLabelMapper.java b/src/main/java/org/springblade/modules/house/mapper/HouseLabelMapper.java
similarity index 71%
rename from src/main/java/org/springblade/modules/house/mapper/HouseholdLabelMapper.java
rename to src/main/java/org/springblade/modules/house/mapper/HouseLabelMapper.java
index cc9086f..ad4e083 100644
--- a/src/main/java/org/springblade/modules/house/mapper/HouseholdLabelMapper.java
+++ b/src/main/java/org/springblade/modules/house/mapper/HouseLabelMapper.java
@@ -16,28 +16,28 @@
*/
package org.springblade.modules.house.mapper;
-import org.apache.ibatis.annotations.Param;
-import org.springblade.common.node.TreeNode;
-import org.springblade.modules.house.entity.HouseholdLabelEntity;
-import org.springblade.modules.house.vo.HouseholdLabelVO;
+import org.springblade.modules.house.entity.HouseLabelEntity;
+import org.springblade.modules.house.vo.HouseLabelVO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import java.util.List;
/**
- * 住户-标签 Mapper 接口
+ * 房屋-标签 Mapper 接口
*
* @author BladeX
* @since 2023-10-28
*/
-public interface HouseholdLabelMapper extends BaseMapper<HouseholdLabelEntity> {
+public interface HouseLabelMapper extends BaseMapper<HouseLabelEntity> {
/**
* 自定义分页
*
* @param page
- * @param householdLabel
+ * @param houseLabel
* @return
*/
- List<HouseholdLabelVO> selectHouseholdLabelPage(IPage page, HouseholdLabelVO householdLabel);
+ List<HouseLabelVO> selectHouseLabelPage(IPage page, HouseLabelVO houseLabel);
+
+
}
--
Gitblit v1.9.3