验证码登陆跳转问题

master
戴余标 3 years ago
parent a643f4af06
commit e8992e6b3e

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

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

Loading…
Cancel
Save