更新沃棣背景适配
This commit is contained in:
@@ -1,13 +1,15 @@
|
||||
enum APPPackageType {
|
||||
TH(1, '太和'),
|
||||
HUANSHUI(2, '欢睡'),
|
||||
MHT(3, '眠花糖'),
|
||||
DONGHUA(4, '东华'),
|
||||
HAIER(5, '海尔'),
|
||||
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 int code;//
|
||||
final String description;//描述
|
||||
final bool havePrivay;//是否有隐私协议和用户协议
|
||||
final bool haveBeiAn;//是否备案
|
||||
|
||||
const APPPackageType(this.code, this.description);
|
||||
const APPPackageType(this.code, this.description,this.havePrivay,this.haveBeiAn);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user