fix:调整翻译
feat:完成勋章展示
This commit is contained in:
11
core/src/main/java/com/chwl/core/user/bean/MedalBean.kt
Normal file
11
core/src/main/java/com/chwl/core/user/bean/MedalBean.kt
Normal file
@@ -0,0 +1,11 @@
|
||||
package com.chwl.core.user.bean
|
||||
|
||||
import androidx.annotation.Keep
|
||||
import java.io.Serializable
|
||||
|
||||
@Keep
|
||||
class MedalBean : Serializable {
|
||||
val medalId: Long? = null
|
||||
val picUrl: String? = null
|
||||
val medalName: String? = null
|
||||
}
|
@@ -71,6 +71,7 @@ public class UserDetailInfo implements Serializable {
|
||||
private String nameplatePic;
|
||||
private String nameplateWord;
|
||||
private String region;
|
||||
private UserDetailMedalInfo medals;
|
||||
|
||||
public String getRegion() {
|
||||
return region;
|
||||
@@ -192,6 +193,14 @@ public class UserDetailInfo implements Serializable {
|
||||
this.privatePhoto = privatePhoto;
|
||||
}
|
||||
|
||||
public UserDetailMedalInfo getMedals() {
|
||||
return medals;
|
||||
}
|
||||
|
||||
public void setMedals(UserDetailMedalInfo medals) {
|
||||
this.medals = medals;
|
||||
}
|
||||
|
||||
public static class UserLevelVoBean {
|
||||
/**
|
||||
* experAmount : 1647
|
||||
|
@@ -0,0 +1,10 @@
|
||||
package com.chwl.core.user.bean
|
||||
|
||||
import androidx.annotation.Keep
|
||||
import java.io.Serializable
|
||||
|
||||
@Keep
|
||||
class UserDetailMedalInfo : Serializable {
|
||||
val userMedals: List<MedalBean>? = null
|
||||
val medalCount: Long? = null
|
||||
}
|
Reference in New Issue
Block a user