version:1.5.8
fix: update:更换图标,增加护眼模式,增加幼儿模式
This commit is contained in:
29
app/src/main/java/com/uiui/zyos/bean/StudyStatBean.java
Normal file
29
app/src/main/java/com/uiui/zyos/bean/StudyStatBean.java
Normal file
@@ -0,0 +1,29 @@
|
||||
package com.uiui.zyos.bean;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.JsonParser;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class StudyStatBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -5373574945126624447L;
|
||||
|
||||
String study_exceed;
|
||||
|
||||
public String getStudy_exceed() {
|
||||
return study_exceed;
|
||||
}
|
||||
|
||||
public void setStudy_exceed(String study_exceed) {
|
||||
this.study_exceed = study_exceed;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return JsonParser.parseString(new Gson().toJson(this)).getAsJsonObject().toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user