1
2
3
4
5
6
7
8
9
10
11
| package com.flightfeather.uav.lightshare.service
|
| import com.flightfeather.uav.domain.entity.SceneInfo
| import com.flightfeather.uav.lightshare.bean.AreaVo
|
| interface SceneService {
|
| fun searchScene(areaVo: AreaVo, page: Int?, perPage: Int?): List<SceneInfo?>
|
| fun searchByCoordinate(lng: Double, lat: Double, radius: Double): List<SceneInfo?>
| }
|
|