罗明文
2024-06-16 9673bcd57c6100ad9fdfbee728ef078104511fc1
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
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 updateBy: String,
    val updateTime: String
):Parcelable