新用户打招呼弹窗UI修改

This commit is contained in:
huangjian
2022-11-25 15:54:48 +08:00
parent c248da1486
commit 3db895ecc7
10 changed files with 183 additions and 68 deletions

View File

@@ -1,5 +1,7 @@
package com.mango.core.user.bean
import java.io.Serializable
/**
* {
"code": 0,
@@ -23,4 +25,4 @@ data class UserInfoSkillEntity(
val id: Int,
val name: String,
val propVals: List<String>
)
) : Serializable

View File

@@ -1,5 +1,6 @@
package com.mango.core.channel_page.bean
import com.mango.core.user.bean.UserInfoSkillEntity
import java.io.Serializable
data class NewUserHelloInfo(
@@ -9,5 +10,6 @@ data class NewUserHelloInfo(
val sayHelloUserUid: Long = 0L,
val sayHelloUserAvatar: String = "",
val sayHelloUserErbanNo: Int = 0,
val sayHelloUserNickname: String = ""
val sayHelloUserNickname: String = "",
val voiceCard: UserInfoSkillEntity? = null
) : Serializable