loki.wu 1 жил өмнө
parent
commit
a692aa4c15

+ 4 - 0
lib/services/organization.m.dart

@@ -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;
 	}
 }