|
|
@@ -46,6 +46,7 @@ public class UserSetting {
|
|
|
private Boolean syncChannelOnDeviceOnline = Boolean.FALSE;
|
|
|
|
|
|
private Boolean sipLog = Boolean.FALSE;
|
|
|
+ private Boolean syncDb = Boolean.TRUE;
|
|
|
|
|
|
private String serverId = "000000";
|
|
|
|
|
|
@@ -216,4 +217,12 @@ public class UserSetting {
|
|
|
public void setSipLog(Boolean sipLog) {
|
|
|
this.sipLog = sipLog;
|
|
|
}
|
|
|
+
|
|
|
+ public Boolean getSyncDb() {
|
|
|
+ return syncDb;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSyncDb(Boolean syncDb) {
|
|
|
+ this.syncDb = syncDb;
|
|
|
+ }
|
|
|
}
|