98 lines
1.8 KiB
Java
98 lines
1.8 KiB
Java
package com.ubt.jimu.course.repository;
|
|
|
|
import java.util.List;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UpdateMission {
|
|
private int capArt;
|
|
private int capEngineering;
|
|
private int capMath;
|
|
private int capScience;
|
|
private int capSpace;
|
|
private int exp;
|
|
private int missionId;
|
|
private List<JimuCourseMission> missions;
|
|
private int score;
|
|
private int star;
|
|
|
|
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 getExp() {
|
|
return this.exp;
|
|
}
|
|
|
|
public int getMissionId() {
|
|
return this.missionId;
|
|
}
|
|
|
|
public List<JimuCourseMission> getMissions() {
|
|
return this.missions;
|
|
}
|
|
|
|
public int getScore() {
|
|
return this.score;
|
|
}
|
|
|
|
public int getStar() {
|
|
return this.star;
|
|
}
|
|
|
|
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 setExp(int i) {
|
|
this.exp = i;
|
|
}
|
|
|
|
public void setMissionId(int i) {
|
|
this.missionId = i;
|
|
}
|
|
|
|
public void setMissions(List<JimuCourseMission> list) {
|
|
this.missions = list;
|
|
}
|
|
|
|
public void setScore(int i) {
|
|
this.score = i;
|
|
}
|
|
|
|
public void setStar(int i) {
|
|
this.star = i;
|
|
}
|
|
}
|