更新沃棣背景适配

This commit is contained in:
wyf
2026-02-10 14:30:16 +08:00
parent 6709bcb446
commit d0ae2a9f76
70 changed files with 877 additions and 744 deletions

View File

@@ -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);
}