From 88cf855268a05a68bb4570c6d45841bbe23fe5ec Mon Sep 17 00:00:00 2001 From: cloudroam <cloudroam> Date: 星期五, 25 四月 2025 13:44:26 +0800 Subject: [PATCH] 短信 --- app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt | 10 +++++++++- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt b/app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt index d131854..8091ac5 100644 --- a/app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt +++ b/app/src/main/java/com/example/firstapp/entity/InvitationRecord.kt @@ -1,7 +1,15 @@ package com.example.firstapp.entity data class InvitationRecord( + val userId: String, val userName: String, val reward: String, - val status: String + val status: String, + val cover:String, + +) + +data class InvitationRecords( + val successInvite: List<InvitationRecord>, + val myInvite: List<InvitationRecord> ) \ No newline at end of file -- Gitblit v1.9.3