罗明文
2024-06-18 c9f6a2283ee7e5595c91c6d721726a89a3ab9ecd
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