|
|
@ -7,6 +7,7 @@ class UserData { |
|
|
String? name; |
|
|
String? name; |
|
|
String? profilePhoto; |
|
|
String? profilePhoto; |
|
|
String? identityCard; |
|
|
String? identityCard; |
|
|
|
|
|
String? code; |
|
|
int? genderCode; |
|
|
int? genderCode; |
|
|
Map? auditProfilePhoto; |
|
|
Map? auditProfilePhoto; |
|
|
bool? hasUploadProfilePhoto; |
|
|
bool? hasUploadProfilePhoto; |
|
|
@ -76,6 +77,7 @@ class UserData { |
|
|
this.name, |
|
|
this.name, |
|
|
this.profilePhoto, |
|
|
this.profilePhoto, |
|
|
this.identityCard, |
|
|
this.identityCard, |
|
|
|
|
|
this.code, |
|
|
this.genderCode, |
|
|
this.genderCode, |
|
|
this.auditProfilePhoto, |
|
|
this.auditProfilePhoto, |
|
|
this.genderValue, |
|
|
this.genderValue, |
|
|
@ -148,6 +150,7 @@ class UserData { |
|
|
name: json['name'], |
|
|
name: json['name'], |
|
|
profilePhoto: json['profilePhoto'], |
|
|
profilePhoto: json['profilePhoto'], |
|
|
identityCard: json['identityCard'], |
|
|
identityCard: json['identityCard'], |
|
|
|
|
|
code: json['code'], |
|
|
genderCode: json['genderCode'] ?? 0, |
|
|
genderCode: json['genderCode'] ?? 0, |
|
|
hasUploadProfilePhoto: json['hasUploadProfilePhoto'] ?? false, |
|
|
hasUploadProfilePhoto: json['hasUploadProfilePhoto'] ?? false, |
|
|
auditProfilePhoto: json['auditProfilePhoto'] ?? null, |
|
|
auditProfilePhoto: json['auditProfilePhoto'] ?? null, |
|
|
@ -217,6 +220,7 @@ class UserData { |
|
|
'name': name, |
|
|
'name': name, |
|
|
'profilePhoto': profilePhoto, |
|
|
'profilePhoto': profilePhoto, |
|
|
'identityCard': identityCard, |
|
|
'identityCard': identityCard, |
|
|
|
|
|
'code': code, |
|
|
'genderCode': genderCode, |
|
|
'genderCode': genderCode, |
|
|
'hasUploadProfilePhoto': hasUploadProfilePhoto, |
|
|
'hasUploadProfilePhoto': hasUploadProfilePhoto, |
|
|
'auditProfilePhoto': auditProfilePhoto, |
|
|
'auditProfilePhoto': auditProfilePhoto, |
|
|
|