16 lines
436 B
Dart
16 lines
436 B
Dart
enum APPPackageType {
|
|
TH(1, '太和',true,true),
|
|
HUANSHUI(2, '欢睡',true,true),
|
|
MHT(3, '眠花糖',true,true),
|
|
DONGHUA(4, '东华',true,true),
|
|
HAIER(5, '沃棣',false,false),
|
|
;
|
|
|
|
final int code;//
|
|
final String description;//描述
|
|
final bool havePrivay;//是否有隐私协议和用户协议
|
|
final bool haveBeiAn;//是否备案
|
|
|
|
const APPPackageType(this.code, this.description,this.havePrivay,this.haveBeiAn);
|
|
}
|