修改bug

This commit is contained in:
jyuesong
2022-01-21 17:07:42 +08:00
parent 9612802996
commit 25c98a1abf
8 changed files with 17 additions and 17 deletions

View File

@@ -13,7 +13,7 @@ class LoginLogBean {
{this.timestamp, this.address, this.ip, this.platform, this.status});
LoginLogBean.fromJson(Map<String, dynamic> json) {
timestamp = json['timestamp'];
timestamp = int.tryParse(json['timestamp'].toString());
address = json['address'];
ip = json['ip'];
platform = json['platform'];