Initial commit
This commit is contained in:
456
sources/com/ubt/jimu/base/entities/ActionResult.java
Normal file
456
sources/com/ubt/jimu/base/entities/ActionResult.java
Normal file
@@ -0,0 +1,456 @@
|
||||
package com.ubt.jimu.base.entities;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class ActionResult implements Serializable {
|
||||
public static final String KEY_ART = "capArt";
|
||||
public static final String KEY_ENGINEER = "capEngineering";
|
||||
public static final String KEY_MATH = "capMath";
|
||||
public static final String KEY_SCIENCE = "capScience";
|
||||
public static final String KEY_SPACE = "capSpace";
|
||||
private int architect;
|
||||
private int artist;
|
||||
private int capArt;
|
||||
private int capEngineering;
|
||||
private int capMath;
|
||||
private int capScience;
|
||||
private int capSpace;
|
||||
private AbValue course;
|
||||
private int engineer;
|
||||
private int exp;
|
||||
private int flag;
|
||||
private int isUpgrate;
|
||||
private int programmer;
|
||||
private int scientist;
|
||||
private int score;
|
||||
private AbValue task;
|
||||
private AUser user;
|
||||
|
||||
public class AUser implements Serializable {
|
||||
int capArt;
|
||||
int capEngineering;
|
||||
int capMath;
|
||||
int capScience;
|
||||
int capSpace;
|
||||
int level;
|
||||
int levelExtraScore;
|
||||
int levelMaxValue;
|
||||
int userExp;
|
||||
int userScore;
|
||||
String userTitle;
|
||||
|
||||
public AUser() {
|
||||
}
|
||||
|
||||
public int getCapArt() {
|
||||
return this.capArt;
|
||||
}
|
||||
|
||||
public int getCapEngineering() {
|
||||
return this.capEngineering;
|
||||
}
|
||||
|
||||
public int getCapMath() {
|
||||
return this.capMath;
|
||||
}
|
||||
|
||||
public int getCapScience() {
|
||||
return this.capScience;
|
||||
}
|
||||
|
||||
public int getCapSpace() {
|
||||
return this.capSpace;
|
||||
}
|
||||
|
||||
public int getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public int getLevelExtraScore() {
|
||||
return this.levelExtraScore;
|
||||
}
|
||||
|
||||
public int getLevelMaxValue() {
|
||||
return this.levelMaxValue;
|
||||
}
|
||||
|
||||
public int getUserExp() {
|
||||
return this.userExp;
|
||||
}
|
||||
|
||||
public int getUserScore() {
|
||||
return this.userScore;
|
||||
}
|
||||
|
||||
public String getUserTitle() {
|
||||
return this.userTitle;
|
||||
}
|
||||
|
||||
public void setCapArt(int i) {
|
||||
this.capArt = i;
|
||||
}
|
||||
|
||||
public void setCapEngineering(int i) {
|
||||
this.capEngineering = i;
|
||||
}
|
||||
|
||||
public void setCapMath(int i) {
|
||||
this.capMath = i;
|
||||
}
|
||||
|
||||
public void setCapScience(int i) {
|
||||
this.capScience = i;
|
||||
}
|
||||
|
||||
public void setCapSpace(int i) {
|
||||
this.capSpace = i;
|
||||
}
|
||||
|
||||
public void setLevel(int i) {
|
||||
this.level = i;
|
||||
}
|
||||
|
||||
public void setLevelExtraScore(int i) {
|
||||
this.levelExtraScore = i;
|
||||
}
|
||||
|
||||
public void setLevelMaxValue(int i) {
|
||||
this.levelMaxValue = i;
|
||||
}
|
||||
|
||||
public void setUserExp(int i) {
|
||||
this.userExp = i;
|
||||
}
|
||||
|
||||
public void setUserScore(int i) {
|
||||
this.userScore = i;
|
||||
}
|
||||
|
||||
public void setUserTitle(String str) {
|
||||
this.userTitle = str;
|
||||
}
|
||||
}
|
||||
|
||||
public class AbValue implements Serializable {
|
||||
private String address;
|
||||
private String addressee;
|
||||
private int capArt;
|
||||
private int capEngineering;
|
||||
private int capMath;
|
||||
private int capScience;
|
||||
private int capSpace;
|
||||
private String contactInfo;
|
||||
private int curExp;
|
||||
private int emailValid;
|
||||
private int exp;
|
||||
private int expLength;
|
||||
private int level;
|
||||
private int levelMaxValue;
|
||||
private int score;
|
||||
private int userId;
|
||||
|
||||
public AbValue() {
|
||||
}
|
||||
|
||||
public String getAddress() {
|
||||
return this.address;
|
||||
}
|
||||
|
||||
public String getAddressee() {
|
||||
return this.addressee;
|
||||
}
|
||||
|
||||
public int getCapArt() {
|
||||
return this.capArt;
|
||||
}
|
||||
|
||||
public int getCapEngineering() {
|
||||
return this.capEngineering;
|
||||
}
|
||||
|
||||
public int getCapMath() {
|
||||
return this.capMath;
|
||||
}
|
||||
|
||||
public int getCapScience() {
|
||||
return this.capScience;
|
||||
}
|
||||
|
||||
public int getCapSpace() {
|
||||
return this.capSpace;
|
||||
}
|
||||
|
||||
public String getContactInfo() {
|
||||
return this.contactInfo;
|
||||
}
|
||||
|
||||
public int getCurExp() {
|
||||
return this.curExp;
|
||||
}
|
||||
|
||||
public int getEmailValid() {
|
||||
return this.emailValid;
|
||||
}
|
||||
|
||||
public int getExp() {
|
||||
return this.exp;
|
||||
}
|
||||
|
||||
public int getExpLength() {
|
||||
return this.expLength;
|
||||
}
|
||||
|
||||
public int getLevel() {
|
||||
return this.level;
|
||||
}
|
||||
|
||||
public int getLevelMaxValue() {
|
||||
return this.levelMaxValue;
|
||||
}
|
||||
|
||||
public int getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public int getUpgradeCount() {
|
||||
int i = this.capArt > 0 ? 1 : 0;
|
||||
if (this.capScience > 0) {
|
||||
i++;
|
||||
}
|
||||
if (this.capSpace > 0) {
|
||||
i++;
|
||||
}
|
||||
if (this.capMath > 0) {
|
||||
i++;
|
||||
}
|
||||
return this.capEngineering > 0 ? i + 1 : i;
|
||||
}
|
||||
|
||||
public int getUserId() {
|
||||
return this.userId;
|
||||
}
|
||||
|
||||
public boolean hasZeroValue() {
|
||||
return this.capArt == 0 || this.capScience == 0 || this.capSpace == 0 || this.capMath == 0 || this.capEngineering == 0;
|
||||
}
|
||||
|
||||
public void setAddress(String str) {
|
||||
this.address = str;
|
||||
}
|
||||
|
||||
public void setAddressee(String str) {
|
||||
this.addressee = str;
|
||||
}
|
||||
|
||||
public void setCapArt(int i) {
|
||||
this.capArt = i;
|
||||
}
|
||||
|
||||
public void setCapEngineering(int i) {
|
||||
this.capEngineering = i;
|
||||
}
|
||||
|
||||
public void setCapMath(int i) {
|
||||
this.capMath = i;
|
||||
}
|
||||
|
||||
public void setCapScience(int i) {
|
||||
this.capScience = i;
|
||||
}
|
||||
|
||||
public void setCapSpace(int i) {
|
||||
this.capSpace = i;
|
||||
}
|
||||
|
||||
public void setContactInfo(String str) {
|
||||
this.contactInfo = str;
|
||||
}
|
||||
|
||||
public void setCurExp(int i) {
|
||||
this.curExp = i;
|
||||
}
|
||||
|
||||
public void setEmailValid(int i) {
|
||||
this.emailValid = i;
|
||||
}
|
||||
|
||||
public void setExp(int i) {
|
||||
this.exp = i;
|
||||
}
|
||||
|
||||
public void setExpLength(int i) {
|
||||
this.expLength = i;
|
||||
}
|
||||
|
||||
public void setLevel(int i) {
|
||||
this.level = i;
|
||||
}
|
||||
|
||||
public void setLevelMaxValue(int i) {
|
||||
this.levelMaxValue = i;
|
||||
}
|
||||
|
||||
public void setScore(int i) {
|
||||
this.score = i;
|
||||
}
|
||||
|
||||
public void setUserId(int i) {
|
||||
this.userId = i;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "AbValue{capArt=" + this.capArt + ", exp=" + this.exp + ", capScience=" + this.capScience + ", capSpace=" + this.capSpace + ", capMath=" + this.capMath + ", score=" + this.score + ", capEngineering=" + this.capEngineering + ", userId=" + this.userId + ", level=" + this.level + ", levelMaxValue=" + this.levelMaxValue + '}';
|
||||
}
|
||||
}
|
||||
|
||||
public int getArchitect() {
|
||||
return this.architect;
|
||||
}
|
||||
|
||||
public int getArtist() {
|
||||
return this.artist;
|
||||
}
|
||||
|
||||
public int getCapArt() {
|
||||
return this.capArt;
|
||||
}
|
||||
|
||||
public int getCapEngineering() {
|
||||
return this.capEngineering;
|
||||
}
|
||||
|
||||
public int getCapMath() {
|
||||
return this.capMath;
|
||||
}
|
||||
|
||||
public int getCapScience() {
|
||||
return this.capScience;
|
||||
}
|
||||
|
||||
public int getCapSpace() {
|
||||
return this.capSpace;
|
||||
}
|
||||
|
||||
public int getChangedCount() {
|
||||
int i = this.architect == 1 ? 1 : 0;
|
||||
if (this.programmer == 1) {
|
||||
i++;
|
||||
}
|
||||
if (this.engineer == 1) {
|
||||
i++;
|
||||
}
|
||||
if (this.scientist == 1) {
|
||||
i++;
|
||||
}
|
||||
return this.artist == 1 ? i + 1 : i;
|
||||
}
|
||||
|
||||
public AbValue getCourse() {
|
||||
return this.course;
|
||||
}
|
||||
|
||||
public int getEngineer() {
|
||||
return this.engineer;
|
||||
}
|
||||
|
||||
public int getExp() {
|
||||
return this.exp;
|
||||
}
|
||||
|
||||
public int getFlag() {
|
||||
return this.flag;
|
||||
}
|
||||
|
||||
public int getIsUpgrate() {
|
||||
return this.isUpgrate;
|
||||
}
|
||||
|
||||
public int getProgrammer() {
|
||||
return this.programmer;
|
||||
}
|
||||
|
||||
public int getScientist() {
|
||||
return this.scientist;
|
||||
}
|
||||
|
||||
public int getScore() {
|
||||
return this.score;
|
||||
}
|
||||
|
||||
public AbValue getTask() {
|
||||
return this.task;
|
||||
}
|
||||
|
||||
public AUser getUser() {
|
||||
return this.user;
|
||||
}
|
||||
|
||||
public void setArchitect(int i) {
|
||||
this.architect = i;
|
||||
}
|
||||
|
||||
public void setArtist(int i) {
|
||||
this.artist = i;
|
||||
}
|
||||
|
||||
public void setCapArt(int i) {
|
||||
this.capArt = i;
|
||||
}
|
||||
|
||||
public void setCapEngineering(int i) {
|
||||
this.capEngineering = i;
|
||||
}
|
||||
|
||||
public void setCapMath(int i) {
|
||||
this.capMath = i;
|
||||
}
|
||||
|
||||
public void setCapScience(int i) {
|
||||
this.capScience = i;
|
||||
}
|
||||
|
||||
public void setCapSpace(int i) {
|
||||
this.capSpace = i;
|
||||
}
|
||||
|
||||
public void setCourse(AbValue abValue) {
|
||||
this.course = abValue;
|
||||
}
|
||||
|
||||
public void setEngineer(int i) {
|
||||
this.engineer = i;
|
||||
}
|
||||
|
||||
public void setExp(int i) {
|
||||
this.exp = i;
|
||||
}
|
||||
|
||||
public void setFlag(int i) {
|
||||
this.flag = i;
|
||||
}
|
||||
|
||||
public void setIsUpgrate(int i) {
|
||||
this.isUpgrate = i;
|
||||
}
|
||||
|
||||
public void setProgrammer(int i) {
|
||||
this.programmer = i;
|
||||
}
|
||||
|
||||
public void setScientist(int i) {
|
||||
this.scientist = i;
|
||||
}
|
||||
|
||||
public void setScore(int i) {
|
||||
this.score = i;
|
||||
}
|
||||
|
||||
public void setTask(AbValue abValue) {
|
||||
this.task = abValue;
|
||||
}
|
||||
|
||||
public void setUser(AUser aUser) {
|
||||
this.user = aUser;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user