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
|