| File was renamed from src/main/java/org/springblade/modules/house/service/IHouseLabelService.java |
| | |
| | | package org.springblade.modules.house.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.house.entity.HouseLabelEntity; |
| | | import org.springblade.modules.house.entity.UserHouseLabelEntity; |
| | | import org.springblade.modules.house.vo.HouseLabelVO; |
| | | import org.springblade.core.mp.base.BaseService; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | /** |
| | |
| | | * @author BladeX |
| | | * @since 2023-10-28 |
| | | */ |
| | | public interface IHouseLabelService extends IService<HouseLabelEntity> { |
| | | public interface IUserHouseLabelService extends IService<UserHouseLabelEntity> { |
| | | |
| | | /** |
| | | * 自定义分页 |
| | |
| | | * @param houseLabel |
| | | * @return |
| | | */ |
| | | boolean saveOrUpdateHouseLabel(HouseLabelEntity houseLabel); |
| | | boolean saveOrUpdateHouseLabel(UserHouseLabelEntity houseLabel); |
| | | } |