linwei
2024-01-08 ad2ec97fe0c60eee4bb7c8cdacff7c876f280ea7
src/main/java/org/springblade/modules/place/mapper/PlaceMapper.java
@@ -17,7 +17,7 @@
package org.springblade.modules.place.mapper;
import org.apache.ibatis.annotations.Param;
import org.springblade.common.node.TreeNode;
import org.springblade.common.node.TreeStringNode;
import org.springblade.modules.place.entity.PlaceEntity;
import org.springblade.modules.place.excel.PlaceAndRelExcel;
import org.springblade.modules.place.vo.PlaceVO;
@@ -50,7 +50,7 @@
    * @param userId
    * @return
    */
    List<TreeNode> selectPlaceNodeList(@Param("userId") String userId);
    List<TreeStringNode> selectPlaceNodeList(@Param("userId") String userId);
   /**
    * 插入用户标签
@@ -90,4 +90,22 @@
    * @return
    */
   PlaceEntity getPlaceAndRelInfo(@Param("place") PlaceAndRelExcel placeExcel);
   /**
    * 查询出有用户id 的场所
    * @return
    */
    List<PlaceEntity> getHasUserIdPlaceList();
   /**
    * 查询所有的场所数据(除去详情表已有的)
    * @return
    */
   List<PlaceEntity> getPlaceListByNoExt();
   /**
    * 商超数据处理
    * @return
    */
   List<PlaceEntity> placeAndRelHandle();
}