更新分享
This commit is contained in:
9
lib/enum/BindType.dart
Normal file
9
lib/enum/BindType.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
enum BindType {
|
||||
active(1, '主动绑定'),
|
||||
share(2, '分享绑定');
|
||||
|
||||
final int code;
|
||||
final String description;
|
||||
|
||||
const BindType(this.code, this.description);
|
||||
}
|
||||
9
lib/enum/LoginStatus.dart
Normal file
9
lib/enum/LoginStatus.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
enum LoginStatus {
|
||||
LOGIN(1, '已登录'),
|
||||
NOT_LOGIN(2, '未登录');
|
||||
|
||||
final int code;
|
||||
final String description;
|
||||
|
||||
const LoginStatus(this.code, this.description);
|
||||
}
|
||||
Reference in New Issue
Block a user