241 lines
4.6 KiB
Java
241 lines
4.6 KiB
Java
package com.ubt.jimu.base.entities;
|
|
|
|
import android.text.TextUtils;
|
|
import java.io.Serializable;
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class Act implements Serializable {
|
|
private String activityDesc;
|
|
private int activityId;
|
|
private String activityStatus;
|
|
private int activityType;
|
|
private String award;
|
|
private String banner;
|
|
private int bannerType;
|
|
private String displayImage;
|
|
private long endTime;
|
|
private String heading;
|
|
private String listImage;
|
|
private long releaseTime;
|
|
private String rewardsName;
|
|
private long startTime;
|
|
private String subheading;
|
|
private List<String> userImages;
|
|
private String videoUrl;
|
|
private int workCount;
|
|
|
|
public enum ActivityType {
|
|
Image(1),
|
|
Video(2),
|
|
Program(3),
|
|
Robot(4);
|
|
|
|
private int type;
|
|
|
|
ActivityType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
}
|
|
|
|
public enum BannerType {
|
|
Image(1),
|
|
Video(2);
|
|
|
|
private int type;
|
|
|
|
BannerType(int i) {
|
|
this.type = i;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.type;
|
|
}
|
|
|
|
public void setType(int i) {
|
|
this.type = i;
|
|
}
|
|
}
|
|
|
|
public enum State {
|
|
Plan(1),
|
|
Unstart(2),
|
|
Running(3),
|
|
Awards(4),
|
|
Finished(5);
|
|
|
|
private int code;
|
|
|
|
State(int i) {
|
|
this.code = i;
|
|
}
|
|
|
|
public int getCode() {
|
|
return this.code;
|
|
}
|
|
|
|
public void setCode(int i) {
|
|
this.code = i;
|
|
}
|
|
}
|
|
|
|
public String getActivityDesc() {
|
|
return this.activityDesc;
|
|
}
|
|
|
|
public int getActivityId() {
|
|
return this.activityId;
|
|
}
|
|
|
|
public String getActivityStatus() {
|
|
return this.activityStatus;
|
|
}
|
|
|
|
public int getActivityType() {
|
|
return this.activityType;
|
|
}
|
|
|
|
public String getAward() {
|
|
return this.award;
|
|
}
|
|
|
|
public String getBanner() {
|
|
return this.banner;
|
|
}
|
|
|
|
public int getBannerType() {
|
|
return this.bannerType;
|
|
}
|
|
|
|
public String getDisplayImage() {
|
|
return this.displayImage;
|
|
}
|
|
|
|
public long getEndTime() {
|
|
return this.endTime;
|
|
}
|
|
|
|
public String getHeading() {
|
|
return this.heading;
|
|
}
|
|
|
|
public String getListImage() {
|
|
return this.listImage;
|
|
}
|
|
|
|
public long getReleaseTime() {
|
|
return this.releaseTime;
|
|
}
|
|
|
|
public String getRewardsName() {
|
|
return this.rewardsName;
|
|
}
|
|
|
|
public long getStartTime() {
|
|
return this.startTime;
|
|
}
|
|
|
|
public String getSubheading() {
|
|
return this.subheading;
|
|
}
|
|
|
|
public List<String> getUserImages() {
|
|
return this.userImages;
|
|
}
|
|
|
|
public String getVideoUrl() {
|
|
return this.videoUrl;
|
|
}
|
|
|
|
public int getWorkCount() {
|
|
return this.workCount;
|
|
}
|
|
|
|
public boolean isRunning() {
|
|
if (TextUtils.isEmpty(this.activityStatus)) {
|
|
return false;
|
|
}
|
|
return this.activityStatus.equals("Running");
|
|
}
|
|
|
|
public void setActivityDesc(String str) {
|
|
this.activityDesc = str;
|
|
}
|
|
|
|
public void setActivityId(int i) {
|
|
this.activityId = i;
|
|
}
|
|
|
|
public void setActivityStatus(String str) {
|
|
this.activityStatus = str;
|
|
}
|
|
|
|
public void setActivityType(int i) {
|
|
this.activityType = i;
|
|
}
|
|
|
|
public void setAward(String str) {
|
|
this.award = str;
|
|
}
|
|
|
|
public void setBanner(String str) {
|
|
this.banner = str;
|
|
}
|
|
|
|
public void setBannerType(int i) {
|
|
this.bannerType = i;
|
|
}
|
|
|
|
public void setDisplayImage(String str) {
|
|
this.displayImage = str;
|
|
}
|
|
|
|
public void setEndTime(long j) {
|
|
this.endTime = j;
|
|
}
|
|
|
|
public void setHeading(String str) {
|
|
this.heading = str;
|
|
}
|
|
|
|
public void setListImage(String str) {
|
|
this.listImage = str;
|
|
}
|
|
|
|
public void setReleaseTime(long j) {
|
|
this.releaseTime = j;
|
|
}
|
|
|
|
public void setRewardsName(String str) {
|
|
this.rewardsName = str;
|
|
}
|
|
|
|
public void setStartTime(long j) {
|
|
this.startTime = j;
|
|
}
|
|
|
|
public void setSubheading(String str) {
|
|
this.subheading = str;
|
|
}
|
|
|
|
public void setUserImages(List<String> list) {
|
|
this.userImages = list;
|
|
}
|
|
|
|
public void setVideoUrl(String str) {
|
|
this.videoUrl = str;
|
|
}
|
|
|
|
public void setWorkCount(int i) {
|
|
this.workCount = i;
|
|
}
|
|
}
|