riku
2025-10-17 fbae5f3ea74727ccadc48314a864a1ea0099a945
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package cn.flightfeather.thirdappmodule.httpservice
 
import cn.flightfeather.thirdappmodule.bean.entity.Domainitem
import io.reactivex.Observable
import retrofit2.Response
import retrofit2.http.GET
import retrofit2.http.Query
 
/**
 * @author riku
 * Date: 2021/8/13
 */
interface DomainItemService {
 
    /**
     * 获取场景的问题位置集合
     */
    @GET("domainitem/location")
    fun getLocation(@Query("sceneType") sceneType: Int): Observable<Response<ArrayList<Domainitem>>>
 
    /**
     * 获取场景的任意拍图片分类
     */
    @GET("domainitem/mediaFileType")
    fun getMediaFileType(@Query("sceneType") sceneType: Int): Observable<Response<Map<String?, String?>>>
}