zhongrj
2024-01-11 1edc8864e802f1e40cc25295cb1837dcb6c12065
src/main/java/org/springblade/modules/place/service/IPlaceService.java
@@ -17,6 +17,7 @@
package org.springblade.modules.place.service;
import com.baomidou.mybatisplus.extension.service.IService;
import org.apache.ibatis.annotations.Param;
import org.springblade.common.node.TreeStringNode;
import org.springblade.modules.place.entity.PlaceEntity;
import org.springblade.modules.place.excel.PlaceAndRelExcel;
@@ -121,4 +122,19 @@
    * @return
    */
    Object placeAndRelHandle();
   /**
    * 根据标签编号集合查询对应的场所
    * @param stringList
    * @param color
    * @return
    */
   List<PlaceVO> getPlaceListByParam(List<String> stringList,String color);
   /**
    * 删除
    * @param longs
    * @return
    */
   boolean removePlace(List<Long> longs);
}