107 lines
2.0 KiB
Java
107 lines
2.0 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Award implements Serializable {
|
|
private int activityId;
|
|
private String award;
|
|
private String awardsDesc;
|
|
private long createTime;
|
|
private int empiricalValue;
|
|
private int orderId;
|
|
private int quantity;
|
|
private int rewardsId;
|
|
private String rewardsName;
|
|
private int score;
|
|
private long updateTime;
|
|
|
|
public int getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public String getAward() {
|
|
return this.award;
|
|
}
|
|
|
|
public String getAwardsDesc() {
|
|
return this.awardsDesc;
|
|
}
|
|
|
|
public long getCreateTime() {
|
|
return this.createTime;
|
|
}
|
|
|
|
public int getEmpiricalValue() {
|
|
return this.empiricalValue;
|
|
}
|
|
|
|
public int getOrderId() {
|
|
return this.orderId;
|
|
}
|
|
|
|
public int getQuantity() {
|
|
return this.quantity;
|
|
}
|
|
|
|
public int getRewardsId() {
|
|
return this.rewardsId;
|
|
}
|
|
|
|
public String getRewardsName() {
|
|
return this.rewardsName;
|
|
}
|
|
|
|
public int getScore() {
|
|
return this.score;
|
|
}
|
|
|
|
public long getUpdateTime() {
|
|
return this.updateTime;
|
|
}
|
|
|
|
public void setActivityId(int i) {
|
|
this.activityId = i;
|
|
}
|
|
|
|
public void setAward(String str) {
|
|
this.award = str;
|
|
}
|
|
|
|
public void setAwardsDesc(String str) {
|
|
this.awardsDesc = str;
|
|
}
|
|
|
|
public void setCreateTime(long j) {
|
|
this.createTime = j;
|
|
}
|
|
|
|
public void setEmpiricalValue(int i) {
|
|
this.empiricalValue = i;
|
|
}
|
|
|
|
public void setOrderId(int i) {
|
|
this.orderId = i;
|
|
}
|
|
|
|
public void setQuantity(int i) {
|
|
this.quantity = i;
|
|
}
|
|
|
|
public void setRewardsId(int i) {
|
|
this.rewardsId = i;
|
|
}
|
|
|
|
public void setRewardsName(String str) {
|
|
this.rewardsName = str;
|
|
}
|
|
|
|
public void setScore(int i) {
|
|
this.score = i;
|
|
}
|
|
|
|
public void setUpdateTime(long j) {
|
|
this.updateTime = j;
|
|
}
|
|
}
|