90 lines
1.7 KiB
Java
90 lines
1.7 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Fans 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;
|
|
}
|
|
}
|