linwe
2024-06-20 79d28c3b174275e4ecdd89baa5b0d7caccda5c8d
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();
}