lmw
2024-06-18 1f45a54dc8e149548d3a61d1228741627aa4f23e
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.dollearn.student.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
@Parcelize
data class GoodsDetail(
    val exchangeNumber: Int,
    val good: Goods,
    val goodTypes: List<GoodsType>?,
    val orderNumber: String,
    val recipient: Recipient
):Parcelable
 
@Parcelize
data class Recipient(
    val address: String,
    val city: String,
    val cityCode: String,
    val createBy: String?,
    val createTime: String,
    val disabled: Boolean,
    val id: String,
    val isDefault: Int,
    val province: String,
    val provinceCode: String,
    val recipient: String,
    val recipientPhone: String,
    val updateTime: String
):Parcelable