| | |
| | | package org.springblade.modules.house.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.house.dto.UserHouseLabelDTO; |
| | | import org.springblade.modules.house.entity.UserHouseLabelEntity; |
| | | import org.springblade.modules.house.vo.HouseLabelVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 房屋-标签 服务类 |
| | |
| | | * @return |
| | | */ |
| | | boolean saveOrUpdateHouseLabel(UserHouseLabelEntity houseLabel); |
| | | |
| | | List<Integer> selectUserLabelList(UserHouseLabelDTO userHouseLabelDTO); |
| | | } |