lmw
2024-10-25 314b67e56f24f7bce040ae2b5d57c7eac7b197a9
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
package com.sinata.xqmuse.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
@Parcelize
data class ConfirmOrder(
    val address: String,
    val addressDetail: String,
    val balance: String,
    val briefIntroduction: String,
    val cateId: Int,
    val chargeType: Int,
    val courseTitle: String,
    val courseType: Int,
    val coverUrl: String,
    val createBy: String,
    val createTime: String,
    val description: String,
    val detailUrl: String,
    val generalPrice: String,
    val id: String,
    val latitude: Double,
    val listingStatus: Int,
    val longitude: Double,
    val recommend: Int,
    val sortNum: Int,
    val tutor: String,
    val wxQrCode: String
):Parcelable