lmw
2024-07-16 c303346ae803dc2a89ec0f025192773211861915
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
package com.dollearn.student.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
@Parcelize
data class Goods(
    val basicCount: Int,
    val coverImg: String,
    val createBy: String,
    val createTime: String,
    val detail: String,
    val detailImg: String,
    val disabled: Boolean,
    val id: String,
    val integral: Int,
    val inventory: Int?,
    val isDelete: Int,
    val name: String,
    val price: Double?,
    val surplus: Int,
    val total: Int,
    val type: Int?,
    val typeIds: String,
    val updateBy: String,
    val updateTime: String,
    val userCount: Int?
):Parcelable