version:1.0.0

fix:
update:增加推送,增加桌面属性,更改包名
This commit is contained in:
2025-11-21 17:29:50 +08:00
parent ebbd2b5aba
commit 2478295bbd
237 changed files with 1063 additions and 859 deletions

View File

@@ -0,0 +1,29 @@
package com.handuan.os.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();
}
}