app/src/main/java/cn/flightfeather/thirdappmodule/httpservice/DomainItemService.kt
@@ -1,6 +1,7 @@
package cn.flightfeather.thirdappmodule.httpservice
import cn.flightfeather.thirdappmodule.bean.entity.Domainitem
import cn.flightfeather.thirdappmodule.model.bean.BaseResponse
import io.reactivex.Observable
import retrofit2.Response
import retrofit2.http.GET
@@ -25,5 +26,5 @@
    fun getMediaFileType(@Query("sceneType") sceneType: Int): Observable<Response<Map<String?, String?>>>
    @GET("domainitem/name")
    fun getItemByName(@Query("name") name: String): Observable<Response<ArrayList<Domainitem>>>
    fun getItemByName(@Query("name") name: String): Observable<Response<BaseResponse<ArrayList<Domainitem>>>>
}