1个人中心加tab 2.技能卡 添加类型刷新 3.技能卡添加蒙层指引

This commit is contained in:
yitao_hello
2022-01-17 19:06:27 +08:00
parent 2bf08dfff7
commit 858598eef1
42 changed files with 2318 additions and 1211 deletions

View File

@@ -96,6 +96,10 @@ public class UserInfo implements Serializable {
//个人相册
private List<UserPhoto> privatePhoto;
private ArrayList<JoinWorldInfo> joinWorlds;
//技能卡
@Getter
@Setter
private List<String> absCardPics;
@Getter
@Setter
private int registerDay;

View File

@@ -0,0 +1,26 @@
package com.yizhuan.xchat_android_core.user.bean
/**
* {
"code": 0,
"data": [
{
"colorType": 0,
"icon": "string",
"id": 0,
"name": "string",
"propVals": [
"string"
]
}
],
"message": "string"
}
*/
data class UserInfoSkillEntity(
val cardId: Int,
val icon: String?,
val id: Int,
val name: String,
val propVals: List<String>
)