linwe
2023-11-14 acf2bdafdfa2fb1fe423d0700950c3ddd53c481b
src/main/java/org/springblade/modules/house/service/IUserHouseLabelService.java
File was renamed from src/main/java/org/springblade/modules/house/service/IHouseLabelService.java
@@ -17,9 +17,8 @@
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;
/**
@@ -28,7 +27,7 @@
 * @author BladeX
 * @since 2023-10-28
 */
public interface IHouseLabelService extends IService<HouseLabelEntity> {
public interface IUserHouseLabelService extends IService<UserHouseLabelEntity> {
   /**
    * 自定义分页
@@ -45,5 +44,5 @@
    * @param houseLabel
    * @return
    */
    boolean saveOrUpdateHouseLabel(HouseLabelEntity houseLabel);
    boolean saveOrUpdateHouseLabel(UserHouseLabelEntity houseLabel);
}