|
@@ -1840,6 +1840,7 @@ class SignUpRequest extends UserDTO{
|
|
|
String? language,
|
|
|
bool enableReportLabel = false,
|
|
|
List<AssociatedInfoDTO >? associatedInfos,
|
|
|
+ String? commonPlatformUserId,
|
|
|
String? bindEmergencyDeviceCode,
|
|
|
String? userCode,
|
|
|
String? userName,
|
|
@@ -1877,6 +1878,7 @@ class SignUpRequest extends UserDTO{
|
|
|
language: language,
|
|
|
enableReportLabel: enableReportLabel,
|
|
|
associatedInfos: associatedInfos,
|
|
|
+ commonPlatformUserId: commonPlatformUserId,
|
|
|
bindEmergencyDeviceCode: bindEmergencyDeviceCode,
|
|
|
userCode: userCode,
|
|
|
userName: userName,
|
|
@@ -1917,6 +1919,7 @@ class SignUpRequest extends UserDTO{
|
|
|
language: map['Language'],
|
|
|
enableReportLabel: map['EnableReportLabel'],
|
|
|
associatedInfos: map['AssociatedInfos'] != null ? (map['AssociatedInfos'] as List).map((e)=>AssociatedInfoDTO.fromJson(e as Map<String,dynamic>)).toList() : null,
|
|
|
+ commonPlatformUserId: map['CommonPlatformUserId'],
|
|
|
bindEmergencyDeviceCode: map['BindEmergencyDeviceCode'],
|
|
|
userCode: map['UserCode'],
|
|
|
userName: map['UserName'],
|
|
@@ -6243,6 +6246,7 @@ class ManageUserInfoDTO extends UserDTO{
|
|
|
String? language,
|
|
|
bool enableReportLabel = false,
|
|
|
List<AssociatedInfoDTO >? associatedInfos,
|
|
|
+ String? commonPlatformUserId,
|
|
|
String? bindEmergencyDeviceCode,
|
|
|
String? userCode,
|
|
|
String? userName,
|
|
@@ -6280,6 +6284,7 @@ class ManageUserInfoDTO extends UserDTO{
|
|
|
language: language,
|
|
|
enableReportLabel: enableReportLabel,
|
|
|
associatedInfos: associatedInfos,
|
|
|
+ commonPlatformUserId: commonPlatformUserId,
|
|
|
bindEmergencyDeviceCode: bindEmergencyDeviceCode,
|
|
|
userCode: userCode,
|
|
|
userName: userName,
|
|
@@ -6329,6 +6334,7 @@ class ManageUserInfoDTO extends UserDTO{
|
|
|
language: map['Language'],
|
|
|
enableReportLabel: map['EnableReportLabel'],
|
|
|
associatedInfos: map['AssociatedInfos'] != null ? (map['AssociatedInfos'] as List).map((e)=>AssociatedInfoDTO.fromJson(e as Map<String,dynamic>)).toList() : null,
|
|
|
+ commonPlatformUserId: map['CommonPlatformUserId'],
|
|
|
bindEmergencyDeviceCode: map['BindEmergencyDeviceCode'],
|
|
|
userCode: map['UserCode'],
|
|
|
userName: map['UserName'],
|
|
@@ -6405,6 +6411,7 @@ class ModifyUserRequest extends ManageUserInfoDTO{
|
|
|
String? language,
|
|
|
bool enableReportLabel = false,
|
|
|
List<AssociatedInfoDTO >? associatedInfos,
|
|
|
+ String? commonPlatformUserId,
|
|
|
String? bindEmergencyDeviceCode,
|
|
|
String? userCode,
|
|
|
String? userName,
|
|
@@ -6451,6 +6458,7 @@ class ModifyUserRequest extends ManageUserInfoDTO{
|
|
|
language: language,
|
|
|
enableReportLabel: enableReportLabel,
|
|
|
associatedInfos: associatedInfos,
|
|
|
+ commonPlatformUserId: commonPlatformUserId,
|
|
|
bindEmergencyDeviceCode: bindEmergencyDeviceCode,
|
|
|
userCode: userCode,
|
|
|
userName: userName,
|
|
@@ -6501,6 +6509,7 @@ class ModifyUserRequest extends ManageUserInfoDTO{
|
|
|
language: map['Language'],
|
|
|
enableReportLabel: map['EnableReportLabel'],
|
|
|
associatedInfos: map['AssociatedInfos'] != null ? (map['AssociatedInfos'] as List).map((e)=>AssociatedInfoDTO.fromJson(e as Map<String,dynamic>)).toList() : null,
|
|
|
+ commonPlatformUserId: map['CommonPlatformUserId'],
|
|
|
bindEmergencyDeviceCode: map['BindEmergencyDeviceCode'],
|
|
|
userCode: map['UserCode'],
|
|
|
userName: map['UserName'],
|