zhongrj
2023-12-28 14b436a7690bb206ef2a5ab3cc385ac337c64da4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.springblade.modules.place.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springblade.modules.place.entity.PlacePoiLabel;
 
import java.util.List;
 
public interface PlacePoiLabelMapper extends BaseMapper<PlacePoiLabel> {
 
    /**
     * 查询第三级数据
     * @return
     */
    List<PlacePoiLabel> getPlacePoiLabelList();
}