Initial commit
This commit is contained in:
89
sources/com/ubt/jimu/base/entities/Rank.java
Normal file
89
sources/com/ubt/jimu/base/entities/Rank.java
Normal file
@@ -0,0 +1,89 @@
|
||||
package com.ubt.jimu.base.entities;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class Rank implements Serializable {
|
||||
private static final long serialVersionUID = 1;
|
||||
private String descKey;
|
||||
private int isSubscribed;
|
||||
private int level;
|
||||
private String nickName;
|
||||
private String title;
|
||||
private String titleKey;
|
||||
private long userId;
|
||||
private String userImage;
|
||||
private String userName;
|
||||
|
||||
public String getDescKey() {
|
||||
return this.descKey;
|
||||
}
|
||||
|
||||
public int getIsSubscribed() {
|
||||
return this.isSubscribed;
|
||||
}
|
||||
|
||||
public int getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public String getNickName() {
|
||||
return this.nickName;
|
||||
}
|
||||
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
public String getTitleKey() {
|
||||
return this.titleKey;
|
||||
}
|
||||
|
||||
public long getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public String getUserImage() {
|
||||
return this.userImage;
|
||||
}
|
||||
|
||||
public String getUserName() {
|
||||
return this.userName;
|
||||
}
|
||||
|
||||
public void setDescKey(String str) {
|
||||
this.descKey = str;
|
||||
}
|
||||
|
||||
public void setIsSubscribed(int i) {
|
||||
this.isSubscribed = i;
|
||||
}
|
||||
|
||||
public void setLevel(int i) {
|
||||
this.level = i;
|
||||
}
|
||||
|
||||
public void setNickName(String str) {
|
||||
this.nickName = str;
|
||||
}
|
||||
|
||||
public void setTitle(String str) {
|
||||
this.title = str;
|
||||
}
|
||||
|
||||
public void setTitleKey(String str) {
|
||||
this.titleKey = str;
|
||||
}
|
||||
|
||||
public void setUserId(long j) {
|
||||
this.userId = j;
|
||||
}
|
||||
|
||||
public void setUserImage(String str) {
|
||||
this.userImage = str;
|
||||
}
|
||||
|
||||
public void setUserName(String str) {
|
||||
this.userName = str;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user