version:1.0.0
fix: update:增加推送,增加桌面属性,更改包名
This commit is contained in:
29
app/src/main/java/com/handuan/os/bean/StudyStatBean.java
Normal file
29
app/src/main/java/com/handuan/os/bean/StudyStatBean.java
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user