lmw
2024-07-09 b13afc751dbbce24753d008f1f87d2c5e133a4ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.dollearn.student.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
@Parcelize
data class WelfareDetail(
    val classHours: Int,
    val coverDrawing: String,
    val coursePackageDiscountId: String,
    val coursePackageName: String,
    val storeNameAddr: String,
    val detailDrawing: String?,
    val holiTime: String?,
    val costPrice: String,
    val discountPrice: Double?,
    val freeClassHours: Int?,
    val type: Int,
    val wanpaiGold: Int?,
    val distance: String?,
    val weekTime: String?,
    val time: String?,
    val introduceDrawing: String?
):Parcelable