version:1.3.8

fix:
update:修复不能自动接听,增加桌面地址显示开关
This commit is contained in:
2024-11-13 16:47:16 +08:00
parent b55ceaa93a
commit bb47a13d44
20 changed files with 285 additions and 123 deletions

View File

@@ -70,6 +70,7 @@ public class SystemSettings implements Serializable {
int exit_ctrl;
int connect_page_ctrl;
int connect_edit_ctrl;
int desktop_location;
public int getQch_restore() {
return qch_restore;
@@ -536,6 +537,14 @@ public class SystemSettings implements Serializable {
this.connect_edit_ctrl = connect_edit_ctrl;
}
public int getDesktop_location() {
return desktop_location;
}
public void setDesktop_location(int desktop_location) {
this.desktop_location = desktop_location;
}
@Override
public String toString() {
return JsonParser.parseString(new Gson().toJson(this)).getAsJsonObject().toString();