|
@@ -848,6 +848,7 @@ class ServerSettingResult {
|
|
|
String? webServerUrl;
|
|
|
int consultationTimeoutTimes;
|
|
|
bool qualityControlSwitch;
|
|
|
+ bool isScreenshot;
|
|
|
|
|
|
ServerSettingResult({
|
|
|
this.serverLangugeList,
|
|
@@ -868,6 +869,7 @@ class ServerSettingResult {
|
|
|
this.webServerUrl,
|
|
|
this.consultationTimeoutTimes = 0,
|
|
|
this.qualityControlSwitch = false,
|
|
|
+ this.isScreenshot = false,
|
|
|
});
|
|
|
|
|
|
factory ServerSettingResult.fromJson(Map<String, dynamic> map) {
|
|
@@ -890,6 +892,7 @@ class ServerSettingResult {
|
|
|
webServerUrl: map['WebServerUrl'],
|
|
|
consultationTimeoutTimes: map['ConsultationTimeoutTimes'],
|
|
|
qualityControlSwitch: map['QualityControlSwitch'],
|
|
|
+ isScreenshot: map['IsScreenshot'],
|
|
|
);
|
|
|
}
|
|
|
|
|
@@ -931,6 +934,7 @@ class ServerSettingResult {
|
|
|
}
|
|
|
map['ConsultationTimeoutTimes'] = consultationTimeoutTimes;
|
|
|
map['QualityControlSwitch'] = qualityControlSwitch;
|
|
|
+ map['IsScreenshot'] = isScreenshot;
|
|
|
return map;
|
|
|
}
|
|
|
}
|