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

@@ -9,7 +9,8 @@ class LoginLogBean {
String? platform;
int? status; //0代表成功,1代表失败
LoginLogBean({this.timestamp, this.address, this.ip, this.platform, this.status});
LoginLogBean(
{this.timestamp, this.address, this.ip, this.platform, this.status});
LoginLogBean.fromJson(Map<String, dynamic> json) {
timestamp = json['timestamp'];