[Modify]夺宝精灵和尋愛邏輯修改

This commit is contained in:
wushaocheng
2023-09-13 20:46:29 +08:00
parent 77dcc9d117
commit d99ef80d2e
23 changed files with 325 additions and 123 deletions

View File

@@ -13,7 +13,8 @@ data class ExchangeGiftInfo(
val rewardType: String = "",
val type: Int = 0,
val createTime: Long = 0,
val convertLevel: Int = 0
val convertLevel: Int = 0,
val propItems: List<PropItemInfo> ?= null
) {
fun getPrizeName(): String {

View File

@@ -0,0 +1,8 @@
package com.yizhuan.xchat_android_core.treasurefairy
data class PropItemInfo(
val picUrl: String = "",
val propId: Int = 0,
val propName: String = "",
val propNum: Int = 0
)