cloudroam
6 天以前 0cf0870889d65f5d11d0b2c8af7bca9442a7ba19
app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt
@@ -1,6 +1,15 @@
package com.example.firstapp.entity
data class InvitationRecord(
    val userId: String,
    val userName: String,
    val reward: String
    val reward: String,
    val status: String,
    val cover:String,
)
data class InvitationRecords(
    val successInvite: List<InvitationRecord>,
    val myInvite: List<InvitationRecord>
)