add scripts

This commit is contained in:
jyuesong
2022-01-18 13:09:29 +08:00
parent 1a72b9b5d7
commit 8aa41e577b
15 changed files with 506 additions and 154 deletions

View File

@@ -14,13 +14,13 @@ class DependencyBean {
DependencyBean(
{this.sId,
this.created,
this.status,
this.type,
this.timestamp,
this.name,
this.log,
this.remark});
this.created,
this.status,
this.type,
this.timestamp,
this.name,
this.log,
this.remark});
DependencyBean.fromJson(Map<String, dynamic> json) {
sId = json['_id'];
@@ -45,6 +45,7 @@ class DependencyBean {
data['remark'] = this.remark;
return data;
}
static DependencyBean jsonConversion(Map<String, dynamic> json) {
return DependencyBean.fromJson(json);
}