1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package cn.flightfeather.thirdappmodule.httpservice
 
import cn.flightfeather.thirdappmodule.model.bean.ExcelConfigVo
import io.reactivex.Observable
import okhttp3.ResponseBody
import retrofit2.Response
import retrofit2.http.Body
import retrofit2.http.POST
 
/**
 * @author riku
 * Date: 2020/4/23
 */
interface SearchService {
 
    /**
     * 上传崩溃信息
     */
    @POST("search/subtask/excel")
    fun getExcel(
            @Body config: ExcelConfigVo
    ): Observable<Response<ResponseBody>>
}