验证码登陆跳转问题

master
戴余标 3 years ago
parent a643f4af06
commit e8992e6b3e

@ -24,7 +24,7 @@ class UserInfoModel extends Equatable {
final String? entryDate;
final String? remake;
final List<ImgModel>? imgList;
final int communityCode;
final String? communityCode;
final String communityName;
final String? positionName;
final int? workOrderJurisdiction;
@ -69,6 +69,7 @@ class UserInfoModel extends Equatable {
imgList,
communityName,
positionName,
communityCode,
workOrderJurisdiction
];

@ -27,7 +27,7 @@ UserInfoModel _$UserInfoModelFromJson(Map<String, dynamic> json) =>
imgList: (json['imgList'] as List<dynamic>?)
?.map((e) => ImgModel.fromJson(e as Map<String, dynamic>))
.toList(),
communityCode: json['communityCode'] as int,
communityCode: json['communityCode'] as String,
communityName: json['communityName'] as String,
positionName: json['positionName'] as String?,
workOrderJurisdiction: json['workOrderJurisdiction'] as int?,

Loading…
Cancel
Save