fix
lmw
2024-11-09 d1a9e3312387b6c47e6186af506787a8a66369d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.sinata.xqmuse.network.entity
 
import android.os.Parcelable
import kotlinx.android.parcel.Parcelize
 
data class QABean(
    val list: List<QA>,
    val pages: Int,
    val total: Int
)
 
@Parcelize
data class QA(
    val content: String,
    val customerServiceQrCode: String,
    val questionDescription: String,
    val questionName: String,
    val type: Int
):Parcelable