fix:调整翻译

feat:完成勋章展示
This commit is contained in:
max
2024-06-24 11:13:43 +08:00
parent 2a1983aa46
commit 16a8f9a52a
11 changed files with 141 additions and 12 deletions

View 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
}

View File

@@ -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

View File

@@ -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
}