lmw
2023-05-27 ff365ff4346d220edf2ec1d0041f2284befe3870
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
package com.fanghua.driver.bean
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
data class MajorMoneyBean(
    val code: Int,
    val message: String,
    val resultUtil: MoneyResultUtil
)
 
data class MoneyResultUtil(
    val code: Int,
    val `data`: OrderMoneyData,
    val msg: String
)
 
@Parcelize
data class OrderMoneyData(
    val actualMileage: Double,
    val badWeatherDistance: Double,
    val badWeatherPrice: Double,
    val discountAmount: Double,
    val discountedPrice: Double,
    val longDistance: String,
    val longDistancePrice: Double,
    val orderMoney: Double,
    val outWaitTime: Int,
    val outWaitTimePrice: Double,
    val overBadWeatherDistance: Double,
    val overBadWeatherPrice: Double,
    val overDriveDistance: Double,
    val overDrivePrice: Double,
    val overLongDistance: Double,
    val overLongDistancePrice: Double,
    val startDistance: Double,
    val startPrice: Double,
    val travelTime: String,
    val waitTime: Int,
    val waitTimePrice: Double,
    val wxCollectionCode: String,
    val zfbCollectionCode: String
):Parcelable