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

@@ -12,11 +12,11 @@ class ScriptBean {
ScriptBean(
{this.title,
this.value,
this.key,
this.mtime,
this.disabled,
this.children});
this.value,
this.key,
this.mtime,
this.disabled,
this.children});
ScriptBean.fromJson(Map<String, dynamic> json) {
title = json['title'];
@@ -44,10 +44,10 @@ class ScriptBean {
}
return data;
}
static ScriptBean jsonConversion(Map<String, dynamic> json) {
return ScriptBean.fromJson(json);
}
}
class ScriptChildren {