30 lines
652 B
Java
30 lines
652 B
Java
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();
|
|
}
|
|
}
|