lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
app/src/main/java/com/sinata/xqmuse/network/entity/CourseBean.kt
@@ -11,28 +11,32 @@
@Parcelize
data class CourseBean(
    val address: String,
    val addressDetail: String,
    val briefIntroduction: String,
    val cateId: Int,
    val address: String?,
    val addressDetail: String?,
    val briefIntroduction: String?,
    val coverDescription: String?,
    val cateId: String,
    val chargeType: Int,
    val count: Int,
    val courseTitle: String,
    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: Int,
    val generalPrice: Double,
    val headers: ArrayList<String>?,
    val id: String,
    val iosPrice: Int,
    val businessId: String?,
    val isBuy: Int,
    val isVip: Int,
    val latitude: Int,
    val latitude: Double,
    val listingStatus: Int,
    val longitude: Int,
    val longitude: Double,
    val recommend: Int,
    val sortNum: Int,
    val tutor: String,
    val wxQrCode: String
    val wxQrCode: String?
): Parcelable