1个人中心加tab 2.技能卡 添加类型刷新 3.技能卡添加蒙层指引
This commit is contained in:
@@ -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;
|
||||
|
@@ -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>
|
||||
)
|
Reference in New Issue
Block a user