| File was renamed from src/main/java/org/springblade/modules/house/mapper/HouseholdLabelMapper.java |
| | |
| | | */ |
| | | 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.UserHouseLabelVO; |
| | | 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<UserHouseLabelVO> selectHouseLabelPage(IPage page, UserHouseLabelVO houseLabel); |
| | | |
| | | |
| | | } |