lmw
2024-10-23 2f204867ad034d3a95ba9acc112d6507f296447b
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
32
33
34
35
36
37
38
package com.sinata.xqmuse.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
data class CourseListBean(
    val list: List<CourseBean>,
    val pages: Int,
    val total: Int
)
 
@Parcelize
data class CourseBean(
    val address: String,
    val addressDetail: String,
    val briefIntroduction: String,
    val cateId: Int,
    val chargeType: Int,
    val count: Int,
    val courseTitle: String,
    val courseType: Int,
    val coverUrl: String,
    val description: String,
    val detailUrl: String,
    val generalPrice: Int,
    val headers: ArrayList<String>?,
    val id: String,
    val iosPrice: Int,
    val isBuy: Int,
    val isVip: Int,
    val latitude: Int,
    val listingStatus: Int,
    val longitude: Int,
    val recommend: Int,
    val sortNum: Int,
    val tutor: String,
    val wxQrCode: String
): Parcelable