version:1.5.8

fix:
update:更换图标,增加护眼模式,增加幼儿模式
This commit is contained in:
2023-08-22 18:08:06 +08:00
parent fc5d807bb8
commit 29c799c744
26 changed files with 234 additions and 98 deletions

View 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();
}
}