lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
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
39
40
41
42
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 coverDescription: String?,
    val cateId: String,
    val chargeType: Int,
    val count: Int?,
    val realLearnedNum: Int?,
    val paymentStatus: Int?,
    val courseTitle: String?,
    val meditationTitle: String?,
    val courseType: Int,
    val coverUrl: String,
    val description: String,
    val detailUrl: String,
    val generalPrice: Double,
    val headers: ArrayList<String>?,
    val id: String,
    val businessId: String?,
    val isBuy: Int,
    val isVip: Int,
    val latitude: Double,
    val listingStatus: Int,
    val longitude: Double,
    val recommend: Int,
    val sortNum: Int,
    val tutor: String,
    val wxQrCode: String?
): Parcelable