version:1.1.5
update: bugfixes:优化闹钟自动接听
This commit is contained in:
48
app/src/main/java/com/xxpatx/os/bean/ActivationBean.java
Normal file
48
app/src/main/java/com/xxpatx/os/bean/ActivationBean.java
Normal file
@@ -0,0 +1,48 @@
|
||||
package com.xxpatx.os.bean;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class ActivationBean implements Serializable {
|
||||
private static final long serialVersionUID = 930211633376920464L;
|
||||
|
||||
//是否激活 0否1是
|
||||
int is_activation;
|
||||
//激活码类型 0体验卡 1正式
|
||||
int code_type;
|
||||
//体验到期时间戳 单位秒 0代表没有时间限制
|
||||
long expire_time;
|
||||
//激活时间
|
||||
long activation_time;
|
||||
|
||||
public int getIs_activation() {
|
||||
return is_activation;
|
||||
}
|
||||
|
||||
public void setIs_activation(int is_activation) {
|
||||
this.is_activation = is_activation;
|
||||
}
|
||||
|
||||
public int getCode_type() {
|
||||
return code_type;
|
||||
}
|
||||
|
||||
public void setCode_type(int code_type) {
|
||||
this.code_type = code_type;
|
||||
}
|
||||
|
||||
public long getExpire_time() {
|
||||
return expire_time;
|
||||
}
|
||||
|
||||
public void setExpire_time(long expire_time) {
|
||||
this.expire_time = expire_time;
|
||||
}
|
||||
|
||||
public long getActivation_time() {
|
||||
return activation_time;
|
||||
}
|
||||
|
||||
public void setActivation_time(long activation_time) {
|
||||
this.activation_time = activation_time;
|
||||
}
|
||||
}
|
||||
235
app/src/main/java/com/xxpatx/os/bean/AppInfo.java
Normal file
235
app/src/main/java/com/xxpatx/os/bean/AppInfo.java
Normal file
@@ -0,0 +1,235 @@
|
||||
package com.xxpatx.os.bean;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.google.gson.JsonParser;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class AppInfo implements Serializable {
|
||||
private static final long serialVersionUID = 423463220624853188L;
|
||||
|
||||
private int app_id;
|
||||
private String app_name;
|
||||
private String app_package;
|
||||
private String app_version_name;
|
||||
private long app_version_code;
|
||||
private long app_size;
|
||||
private String app_desc;
|
||||
private String app_url;
|
||||
private String app_img;
|
||||
private String app_preview1;
|
||||
private String app_preview2;
|
||||
private String app_preview3;
|
||||
private String app_developer;
|
||||
private String app_downloads;
|
||||
private double app_score;
|
||||
private int app_category;
|
||||
private int app_subject;
|
||||
private int app_type;
|
||||
private int app_status;
|
||||
private int is_delete;
|
||||
private int is_update;
|
||||
private int is_silent;
|
||||
private String app_md5;
|
||||
private String createtime;
|
||||
|
||||
public int getApp_id() {
|
||||
return app_id;
|
||||
}
|
||||
|
||||
public void setApp_id(int app_id) {
|
||||
this.app_id = app_id;
|
||||
}
|
||||
|
||||
public String getApp_name() {
|
||||
return app_name;
|
||||
}
|
||||
|
||||
public void setApp_name(String app_name) {
|
||||
this.app_name = app_name;
|
||||
}
|
||||
|
||||
public String getApp_package() {
|
||||
return app_package;
|
||||
}
|
||||
|
||||
public void setApp_package(String app_package) {
|
||||
this.app_package = app_package;
|
||||
}
|
||||
|
||||
public String getApp_version_name() {
|
||||
return app_version_name;
|
||||
}
|
||||
|
||||
public void setApp_version_name(String app_version_name) {
|
||||
this.app_version_name = app_version_name;
|
||||
}
|
||||
|
||||
public long getApp_version_code() {
|
||||
return app_version_code;
|
||||
}
|
||||
|
||||
public void setApp_version_code(long app_version_code) {
|
||||
this.app_version_code = app_version_code;
|
||||
}
|
||||
|
||||
public long getApp_size() {
|
||||
return app_size;
|
||||
}
|
||||
|
||||
public void setApp_size(long app_size) {
|
||||
this.app_size = app_size;
|
||||
}
|
||||
|
||||
public String getApp_desc() {
|
||||
return app_desc;
|
||||
}
|
||||
|
||||
public void setApp_desc(String app_desc) {
|
||||
this.app_desc = app_desc;
|
||||
}
|
||||
|
||||
public String getApp_url() {
|
||||
return app_url;
|
||||
}
|
||||
|
||||
public void setApp_url(String app_url) {
|
||||
this.app_url = app_url;
|
||||
}
|
||||
|
||||
public String getApp_img() {
|
||||
return app_img;
|
||||
}
|
||||
|
||||
public void setApp_img(String app_img) {
|
||||
this.app_img = app_img;
|
||||
}
|
||||
|
||||
public String getApp_preview1() {
|
||||
return app_preview1;
|
||||
}
|
||||
|
||||
public void setApp_preview1(String app_preview1) {
|
||||
this.app_preview1 = app_preview1;
|
||||
}
|
||||
|
||||
public String getApp_preview2() {
|
||||
return app_preview2;
|
||||
}
|
||||
|
||||
public void setApp_preview2(String app_preview2) {
|
||||
this.app_preview2 = app_preview2;
|
||||
}
|
||||
|
||||
public String getApp_preview3() {
|
||||
return app_preview3;
|
||||
}
|
||||
|
||||
public void setApp_preview3(String app_preview3) {
|
||||
this.app_preview3 = app_preview3;
|
||||
}
|
||||
|
||||
public String getApp_developer() {
|
||||
return app_developer;
|
||||
}
|
||||
|
||||
public void setApp_developer(String app_developer) {
|
||||
this.app_developer = app_developer;
|
||||
}
|
||||
|
||||
public String getApp_downloads() {
|
||||
return app_downloads;
|
||||
}
|
||||
|
||||
public void setApp_downloads(String app_downloads) {
|
||||
this.app_downloads = app_downloads;
|
||||
}
|
||||
|
||||
public double getApp_score() {
|
||||
return app_score;
|
||||
}
|
||||
|
||||
public void setApp_score(double app_score) {
|
||||
this.app_score = app_score;
|
||||
}
|
||||
|
||||
public int getApp_category() {
|
||||
return app_category;
|
||||
}
|
||||
|
||||
public void setApp_category(int app_category) {
|
||||
this.app_category = app_category;
|
||||
}
|
||||
|
||||
public int getApp_subject() {
|
||||
return app_subject;
|
||||
}
|
||||
|
||||
public void setApp_subject(int app_subject) {
|
||||
this.app_subject = app_subject;
|
||||
}
|
||||
|
||||
public int getApp_type() {
|
||||
return app_type;
|
||||
}
|
||||
|
||||
public void setApp_type(int app_type) {
|
||||
this.app_type = app_type;
|
||||
}
|
||||
|
||||
public int getApp_status() {
|
||||
return app_status;
|
||||
}
|
||||
|
||||
public void setApp_status(int app_status) {
|
||||
this.app_status = app_status;
|
||||
}
|
||||
|
||||
public int getIs_delete() {
|
||||
return is_delete;
|
||||
}
|
||||
|
||||
public void setIs_delete(int is_delete) {
|
||||
this.is_delete = is_delete;
|
||||
}
|
||||
|
||||
public int getIs_update() {
|
||||
return is_update;
|
||||
}
|
||||
|
||||
public void setIs_update(int is_update) {
|
||||
this.is_update = is_update;
|
||||
}
|
||||
|
||||
public int getIs_silent() {
|
||||
return is_silent;
|
||||
}
|
||||
|
||||
public void setIs_silent(int is_silent) {
|
||||
this.is_silent = is_silent;
|
||||
}
|
||||
|
||||
public String getCreatetime() {
|
||||
return createtime;
|
||||
}
|
||||
|
||||
public void setCreatetime(String createtime) {
|
||||
this.createtime = createtime;
|
||||
}
|
||||
|
||||
public String getApp_md5() {
|
||||
return app_md5;
|
||||
}
|
||||
|
||||
public void setApp_md5(String app_md5) {
|
||||
this.app_md5 = app_md5;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
@Override
|
||||
public String toString() {
|
||||
return JsonParser.parseString(new Gson().toJson(this)).getAsJsonObject().toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user