1.4.0318 修复升级后设置默认桌面,对接小程序管控,增加专注模式,接管系统打开app

This commit is contained in:
2024-03-19 09:30:51 +08:00
parent 367c8e333c
commit 124696a9dd
26 changed files with 1299 additions and 491 deletions

View File

@@ -11,6 +11,13 @@ public class SnSetting implements Serializable {
String timecontrol_end;
int is_storeinstall;
int is_usb;
int is_bluetooth_file;
int is_developer;
int is_restore;
int is_topbar;
int is_bottombar;
int is_memory_card;
public int getId() {
return id;
@@ -59,4 +66,52 @@ public class SnSetting implements Serializable {
public void setIs_usb(int is_usb) {
this.is_usb = is_usb;
}
public int getIs_bluetooth_file() {
return is_bluetooth_file;
}
public void setIs_bluetooth_file(int is_bluetooth_file) {
this.is_bluetooth_file = is_bluetooth_file;
}
public int getIs_developer() {
return is_developer;
}
public void setIs_developer(int is_developer) {
this.is_developer = is_developer;
}
public int getIs_restore() {
return is_restore;
}
public void setIs_restore(int is_restore) {
this.is_restore = is_restore;
}
public int getIs_topbar() {
return is_topbar;
}
public void setIs_topbar(int is_topbar) {
this.is_topbar = is_topbar;
}
public int getIs_bottombar() {
return is_bottombar;
}
public void setIs_bottombar(int is_bottombar) {
this.is_bottombar = is_bottombar;
}
public int getIs_memory_card() {
return is_memory_card;
}
public void setIs_memory_card(int is_memory_card) {
this.is_memory_card = is_memory_card;
}
}