This commit is contained in:
cxc
2022-06-27 09:51:30 +08:00
commit 8cb96b4c5e
101 changed files with 11110 additions and 0 deletions

13
lib/models/user_bean.dart Normal file
View File

@ -0,0 +1,13 @@
class UserBean {
String userName = "";
UserBean.fromMap(Map<String, dynamic> map) {
userName = map["userName"];
}
Map<String, dynamic> toJson() {
final Map<String, dynamic> map = <String, dynamic>{};
map["userName"] = userName;
return map;
}
}