修改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

@@ -24,10 +24,10 @@ class DependencyBean {
DependencyBean.fromJson(Map<String, dynamic> json) {
sId = json['_id'];
created = json['created'];
created = int.tryParse(json['created'].toString());
status = json['status'];
type = json['type'];
timestamp = json['timestamp'];
timestamp = json['timestamp'].toString();
name = json['name'];
log = json['log'].cast<String>();
remark = json['remark'];