| File was renamed from src/main/java/org/springblade/modules/house/service/IHouseholdLabelService.java |
| | |
| | | package org.springblade.modules.house.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.common.node.TreeNode; |
| | | import org.springblade.modules.house.entity.HouseholdLabelEntity; |
| | | import org.springblade.modules.house.vo.HouseholdLabelVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import org.springblade.modules.house.entity.HouseLabelEntity; |
| | | import org.springblade.modules.house.vo.UserHouseLabelVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 住户-标签 服务类 |
| | | * 房屋-标签 服务类 |
| | | * |
| | | * @author BladeX |
| | | * @since 2023-10-28 |
| | | */ |
| | | public interface IHouseholdLabelService extends IService<HouseholdLabelEntity> { |
| | | public interface IHouseLabelService extends IService<HouseLabelEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | | * |
| | | * @param page |
| | | * @param householdLabel |
| | | * @param houseLabel |
| | | * @return |
| | | */ |
| | | IPage<HouseholdLabelVO> selectHouseholdLabelPage(IPage<HouseholdLabelVO> page, HouseholdLabelVO householdLabel); |
| | | IPage<UserHouseLabelVO> selectHouseLabelPage(IPage<UserHouseLabelVO> page, UserHouseLabelVO houseLabel); |
| | | |
| | | |
| | | /** |
| | | * 住户-标签 自定义新增或修改 |
| | | * @param householdLabel |
| | | * 房屋-标签 自定义新增或修改 |
| | | * @param houseLabel |
| | | * @return |
| | | */ |
| | | boolean saveOrUpdateHouseholdLabel(HouseholdLabelEntity householdLabel); |
| | | boolean saveOrUpdateHouseLabel(HouseLabelEntity houseLabel); |
| | | } |