version:1.2.4
fix: update:优化显示未读短信和未接来电,增加手电筒和数据开关
This commit is contained in:
@@ -10,12 +10,21 @@ import java.io.Serializable;
|
||||
public class RecordsInfo implements Serializable {
|
||||
private static final long serialVersionUID = -8677336093725878416L;
|
||||
|
||||
String id;
|
||||
String name;
|
||||
String number;
|
||||
long date;
|
||||
int duration;
|
||||
int type;
|
||||
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(String id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@@ -5,7 +5,6 @@ import com.google.gson.Gson;
|
||||
import com.google.gson.JsonParser;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
public class SystemSettings implements Serializable {
|
||||
|
||||
@@ -37,7 +36,7 @@ public class SystemSettings implements Serializable {
|
||||
int qch_restore;
|
||||
int setting_browserInput;
|
||||
int dev_mode;
|
||||
List<Contact> setting_sos;
|
||||
String setting_sos;
|
||||
String setting_volume;
|
||||
String setting_luminance;
|
||||
String setting_typeface;
|
||||
@@ -55,11 +54,22 @@ public class SystemSettings implements Serializable {
|
||||
int setting_location;
|
||||
int setting_charge;
|
||||
int setting_other_appInstaller;
|
||||
|
||||
int is_health;
|
||||
int is_shopping;
|
||||
int is_info;
|
||||
|
||||
int is_quickapp;//快捷应用开关 0关1开
|
||||
String quickapp; //快捷应用包名
|
||||
int is_seek;//查找模式开关 0关1开
|
||||
int is_lose;//丢失模式开关 0关1开
|
||||
String lose_str; //丢失模式描述文字
|
||||
int last_screen;
|
||||
int hover_home;
|
||||
int sos_ctrl;
|
||||
int alarm_clock_ctrl;
|
||||
int app_lock_ctrl;
|
||||
int exit_ctrl;
|
||||
int connect_page_ctrl;
|
||||
int connect_edit_ctrl;
|
||||
|
||||
public int getQch_restore() {
|
||||
return qch_restore;
|
||||
@@ -262,11 +272,11 @@ public class SystemSettings implements Serializable {
|
||||
this.setting_hotspot = setting_hotspot;
|
||||
}
|
||||
|
||||
public List<Contact> getSetting_sos() {
|
||||
public String getSetting_sos() {
|
||||
return setting_sos;
|
||||
}
|
||||
|
||||
public void setSetting_sos(List<Contact> setting_sos) {
|
||||
public void setSetting_sos(String setting_sos) {
|
||||
this.setting_sos = setting_sos;
|
||||
}
|
||||
|
||||
@@ -422,6 +432,110 @@ public class SystemSettings implements Serializable {
|
||||
this.is_info = is_info;
|
||||
}
|
||||
|
||||
public int getIs_quickapp() {
|
||||
return is_quickapp;
|
||||
}
|
||||
|
||||
public void setIs_quickapp(int is_quickapp) {
|
||||
this.is_quickapp = is_quickapp;
|
||||
}
|
||||
|
||||
public String getQuickapp() {
|
||||
return quickapp;
|
||||
}
|
||||
|
||||
public void setQuickapp(String quickapp) {
|
||||
this.quickapp = quickapp;
|
||||
}
|
||||
|
||||
public int getIs_seek() {
|
||||
return is_seek;
|
||||
}
|
||||
|
||||
public void setIs_seek(int is_seek) {
|
||||
this.is_seek = is_seek;
|
||||
}
|
||||
|
||||
public int getIs_lose() {
|
||||
return is_lose;
|
||||
}
|
||||
|
||||
public void setIs_lose(int is_lose) {
|
||||
this.is_lose = is_lose;
|
||||
}
|
||||
|
||||
public String getLose_str() {
|
||||
return lose_str;
|
||||
}
|
||||
|
||||
public void setLose_str(String lose_str) {
|
||||
this.lose_str = lose_str;
|
||||
}
|
||||
|
||||
public int getLast_screen() {
|
||||
return last_screen;
|
||||
}
|
||||
|
||||
public void setLast_screen(int last_screen) {
|
||||
this.last_screen = last_screen;
|
||||
}
|
||||
|
||||
public int getHover_home() {
|
||||
return hover_home;
|
||||
}
|
||||
|
||||
public void setHover_home(int hover_home) {
|
||||
this.hover_home = hover_home;
|
||||
}
|
||||
|
||||
public int getSos_ctrl() {
|
||||
return sos_ctrl;
|
||||
}
|
||||
|
||||
public void setSos_ctrl(int sos_ctrl) {
|
||||
this.sos_ctrl = sos_ctrl;
|
||||
}
|
||||
|
||||
public int getAlarm_clock_ctrl() {
|
||||
return alarm_clock_ctrl;
|
||||
}
|
||||
|
||||
public void setAlarm_clock_ctrl(int alarm_clock_ctrl) {
|
||||
this.alarm_clock_ctrl = alarm_clock_ctrl;
|
||||
}
|
||||
|
||||
public int getApp_lock_ctrl() {
|
||||
return app_lock_ctrl;
|
||||
}
|
||||
|
||||
public void setApp_lock_ctrl(int app_lock_ctrl) {
|
||||
this.app_lock_ctrl = app_lock_ctrl;
|
||||
}
|
||||
|
||||
public int getExit_ctrl() {
|
||||
return exit_ctrl;
|
||||
}
|
||||
|
||||
public void setExit_ctrl(int exit_ctrl) {
|
||||
this.exit_ctrl = exit_ctrl;
|
||||
}
|
||||
|
||||
public int getConnect_page_ctrl() {
|
||||
return connect_page_ctrl;
|
||||
}
|
||||
|
||||
public void setConnect_page_ctrl(int connect_page_ctrl) {
|
||||
this.connect_page_ctrl = connect_page_ctrl;
|
||||
}
|
||||
|
||||
public int getConnect_edit_ctrl() {
|
||||
return connect_edit_ctrl;
|
||||
}
|
||||
|
||||
public void setConnect_edit_ctrl(int connect_edit_ctrl) {
|
||||
this.connect_edit_ctrl = connect_edit_ctrl;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return JsonParser.parseString(new Gson().toJson(this)).getAsJsonObject().toString();
|
||||
|
||||
Reference in New Issue
Block a user