更新分享

This commit is contained in:
wyf
2025-04-28 15:37:58 +08:00
parent 850c34b408
commit eae7a2284d
116 changed files with 12143 additions and 3017 deletions

9
lib/enum/BindType.dart Normal file
View File

@@ -0,0 +1,9 @@
enum BindType {
active(1, '主动绑定'),
share(2, '分享绑定');
final int code;
final String description;
const BindType(this.code, this.description);
}

View File

@@ -0,0 +1,9 @@
enum LoginStatus {
LOGIN(1, '已登录'),
NOT_LOGIN(2, '未登录');
final int code;
final String description;
const LoginStatus(this.code, this.description);
}