Parcourir la source

1、更新rpc

bakamaka.guan il y a 2 ans
Parent
commit
5525b5918d

+ 5 - 0
lib/services/liveConsultation.m.dart

@@ -4162,6 +4162,7 @@ class LoginLockInfoDTO {
 
 class AssociatedInfoDTO {
 	String? id;
+	String? relationName;
 	String? title;
 	String? cTitle;
 	String? eTitle;
@@ -4172,6 +4173,7 @@ class AssociatedInfoDTO {
 
 	AssociatedInfoDTO({
 		this.id,
+		this.relationName,
 		this.title,
 		this.cTitle,
 		this.eTitle,
@@ -4184,6 +4186,7 @@ class AssociatedInfoDTO {
 	factory AssociatedInfoDTO.fromJson(Map<String, dynamic> map) {
 		return AssociatedInfoDTO( 
 			id: map['Id'],
+			relationName: map['RelationName'],
 			title: map['Title'],
 			cTitle: map['CTitle'],
 			eTitle: map['ETitle'],
@@ -4198,6 +4201,8 @@ class AssociatedInfoDTO {
 		final map = Map<String, dynamic>();
 		if(id != null)
 			map['Id'] = id;
+		if(relationName != null)
+			map['RelationName'] = relationName;
 		if(title != null)
 			map['Title'] = title;
 		if(cTitle != null)

+ 3 - 0
lib/services/login.m.dart

@@ -469,6 +469,7 @@ class AssociatedFeatureInfoDTO extends AssociatedInfoDTO{
 	AssociatedFeatureInfoDTO({
 		this.featureCode,
 		String? id,
+		String? relationName,
 		String? title,
 		String? cTitle,
 		String? eTitle,
@@ -478,6 +479,7 @@ class AssociatedFeatureInfoDTO extends AssociatedInfoDTO{
 		int index = 0,
 	}) : super(
 			id: id,
+			relationName: relationName,
 			title: title,
 			cTitle: cTitle,
 			eTitle: eTitle,
@@ -491,6 +493,7 @@ class AssociatedFeatureInfoDTO extends AssociatedInfoDTO{
 		return AssociatedFeatureInfoDTO( 
 			featureCode: map['FeatureCode'],
 			id: map['Id'],
+			relationName: map['RelationName'],
 			title: map['Title'],
 			cTitle: map['CTitle'],
 			eTitle: map['ETitle'],

+ 2 - 0
lib/services/notification.m.dart

@@ -358,6 +358,7 @@ enum ControlDeviceParameterEnum {
 	RejectConnect,
 	EndRunExecuteApi,
 	Get,
+	UserTimeout,
 }
 
 class AdditionParameterDTO {
@@ -446,6 +447,7 @@ enum RemoteDeviceStateEnum {
 	DeviceCancelLogDownload,
 	DeviceDisconnect,
 	DeviceTimeOutDisconnect,
+	DownloadPatching,
 }
 
 class DeviceDisconnectRemoteControlNotification extends NotificationDTO{