188 lines
3.5 KiB
Java
188 lines
3.5 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Push implements Serializable {
|
|
private String activityHeading;
|
|
private int activityId;
|
|
private int activityType;
|
|
private int awardEntity;
|
|
private String buttonText;
|
|
private String content;
|
|
private long createTime;
|
|
private String desc;
|
|
private int exp;
|
|
private String image;
|
|
private String link;
|
|
private int pushId;
|
|
private int rewardsId;
|
|
private int score;
|
|
private int status;
|
|
private String systemArea;
|
|
private String systemLanguage;
|
|
private String title;
|
|
public int type;
|
|
private long updateTime;
|
|
|
|
public String getActivityHeading() {
|
|
return this.activityHeading;
|
|
}
|
|
|
|
public int getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public int getActivityType() {
|
|
return this.activityType;
|
|
}
|
|
|
|
public int getAwardEntity() {
|
|
return this.awardEntity;
|
|
}
|
|
|
|
public String getButtonText() {
|
|
return this.buttonText;
|
|
}
|
|
|
|
public String getContent() {
|
|
return this.content;
|
|
}
|
|
|
|
public long getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public String getDesc() {
|
|
return this.desc;
|
|
}
|
|
|
|
public int getExp() {
|
|
return this.exp;
|
|
}
|
|
|
|
public String getImage() {
|
|
return this.image;
|
|
}
|
|
|
|
public String getLink() {
|
|
return this.link;
|
|
}
|
|
|
|
public int getPushId() {
|
|
return this.pushId;
|
|
}
|
|
|
|
public int getRewardsId() {
|
|
return this.rewardsId;
|
|
}
|
|
|
|
public int getScore() {
|
|
return this.score;
|
|
}
|
|
|
|
public int getStatus() {
|
|
return this.status;
|
|
}
|
|
|
|
public String getSystemArea() {
|
|
return this.systemArea;
|
|
}
|
|
|
|
public String getSystemLanguage() {
|
|
return this.systemLanguage;
|
|
}
|
|
|
|
public String getTitle() {
|
|
return this.title;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public long getUpdateTime() {
|
|
return this.updateTime;
|
|
}
|
|
|
|
public void setActivityHeading(String str) {
|
|
this.activityHeading = str;
|
|
}
|
|
|
|
public void setActivityId(int i) {
|
|
this.activityId = i;
|
|
}
|
|
|
|
public void setActivityType(int i) {
|
|
this.activityType = i;
|
|
}
|
|
|
|
public void setAwardEntity(int i) {
|
|
this.awardEntity = i;
|
|
}
|
|
|
|
public void setButtonText(String str) {
|
|
this.buttonText = str;
|
|
}
|
|
|
|
public void setContent(String str) {
|
|
this.content = str;
|
|
}
|
|
|
|
public void setCreateTime(long j) {
|
|
this.createTime = j;
|
|
}
|
|
|
|
public void setDesc(String str) {
|
|
this.desc = str;
|
|
}
|
|
|
|
public void setExp(int i) {
|
|
this.exp = i;
|
|
}
|
|
|
|
public void setImage(String str) {
|
|
this.image = str;
|
|
}
|
|
|
|
public void setLink(String str) {
|
|
this.link = str;
|
|
}
|
|
|
|
public void setPushId(int i) {
|
|
this.pushId = i;
|
|
}
|
|
|
|
public void setRewardsId(int i) {
|
|
this.rewardsId = i;
|
|
}
|
|
|
|
public void setScore(int i) {
|
|
this.score = i;
|
|
}
|
|
|
|
public void setStatus(int i) {
|
|
this.status = i;
|
|
}
|
|
|
|
public void setSystemArea(String str) {
|
|
this.systemArea = str;
|
|
}
|
|
|
|
public void setSystemLanguage(String str) {
|
|
this.systemLanguage = str;
|
|
}
|
|
|
|
public void setTitle(String str) {
|
|
this.title = str;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public void setUpdateTime(long j) {
|
|
this.updateTime = j;
|
|
}
|
|
}
|