riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
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
package cn.flightfeather.thirdappmodule.httpservice
 
import cn.flightfeather.thirdappmodule.model.bean.BaseResponse
import cn.flightfeather.thirdappmodule.model.bean.LedgerRecord
import io.reactivex.Observable
import retrofit2.Response
import retrofit2.http.GET
import retrofit2.http.Path
import retrofit2.http.Query
 
/**
 * @author riku
 * Date: 2022/04/13
 */
interface LedgerService {
    /**
     * 获取用户某月台账记录
     */
    @GET("ledger/{userId}/detail2")
    fun getRecord(
            @Path("userId") userId: String,
            @Query("sceneType") sceneType: Int,
            @Query("time") time: String
    ): Observable<Response<List<LedgerRecord>>>
}