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
| package com.dollearn.student.network.entity
|
| import android.os.Parcelable
| import kotlinx.android.parcel.Parcelize
|
| @Parcelize
| data class GoodsDetail(
| val exchangeNumber: Int,
| val residueNumber: 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 id: String,
| val isDefault: Int,
| val province: String,
| val provinceCode: String,
| val recipient: String,
| val recipientPhone: String
| ):Parcelable
|
|