lmw
2024-10-23 2f204867ad034d3a95ba9acc112d6507f296447b
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