123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294 |
- // To parse this JSON data, do
- //
- // final appStyle = appStyleFromJson(jsonString);
- class AppStyle {
- AppStyle({
- this.portalList,
- this.indexType,
- this.indexPortal,
- this.simpleMode,
- this.indexCentered,
- this.appIndexPages,
- this.processFilterList,
- this.cmsCategoryFilterList,
- this.contactPermissionView,
- this.nativeAppList,
- this.images,
- this.needGray,
- this.appExitAlert,
- this.systemMessageCanClick,
- this.systemMessageSwitch,
- this.speechScript,
- this.promotionPageScript,
- this.extendParam
- });
-
- String? indexType; // 首页展现类型,default是移动端原来的首页,portal是门户. default
- String? indexPortal;
- bool? simpleMode; // 移动端简易模式
- bool? indexCentered; // 首页居中 首页居中 下面的 appIndexPages 就无效了,页面个数就固定了
- List<String>? appIndexPages; // 首页展现的 tab 列表
- bool? systemMessageSwitch; // 消息列表中 是否显示系统通知
- bool? systemMessageCanClick; // 系统消息是否可点击打开
- bool? needGray; // 是否启用灰色 默哀
- String? appExitAlert; // app退出提示,有提示信息就弹出窗
- String? contactPermissionView; // 移动App通讯录权限视图 addressPowerView
- List<NativeAppList>? nativeAppList;
- List<PortalList>? portalList;
- List<AppStyleImage>? images;
- List<String>? processFilterList; // 首页办公中心,流程过滤条件.
- List<String>? cmsCategoryFilterList; // 首页信息中心,分类过滤条件.
- String? speechScript; // 语音助手服务脚本名,如果没有不显示语音助手
- String? promotionPageScript; // 推广页
- Map<String, dynamic>? extendParam; // 扩展属性
- factory AppStyle.fromJson(Map<String, dynamic> json) => AppStyle(
- portalList: json["portalList"] == null ? null : List<PortalList>.from(json["portalList"].map((x) => PortalList.fromJson(x))),
- indexType: json["indexType"],
- indexPortal: json["indexPortal"],
- simpleMode: json["simpleMode"],
- indexCentered: json["indexCentered"],
- appIndexPages: json["appIndexPages"] == null ? null : List<String>.from(json['appIndexPages'].map((e)=> e)),
- needGray: json["needGray"],
- appExitAlert: json["appExitAlert"],
- systemMessageSwitch: json["systemMessageSwitch"],
- systemMessageCanClick: json["systemMessageCanClick"],
- contactPermissionView: json["contactPermissionView"],
- speechScript: json["speechScript"],
- promotionPageScript: json["promotionPageScript"],
- nativeAppList: json["nativeAppList"] == null ? null : List<NativeAppList>.from(json["nativeAppList"].map((x) => NativeAppList.fromJson(x))),
- images: json["images"] == null ? null : List<AppStyleImage>.from(json["images"].map((x) => AppStyleImage.fromJson(x))),
- processFilterList: json["processFilterList"] == null ? null : List<String>.from(json['processFilterList'].map((e)=> e)),
- cmsCategoryFilterList: json["cmsCategoryFilterList"] == null ? null : List<String>.from(json['cmsCategoryFilterList'].map((e)=> e)),
- extendParam: json["extendParam"]
- );
- Map<String, dynamic> toJson() => {
- "portalList": portalList == null ? null : List<dynamic>.from(portalList!.map((x) => x.toJson())),
- "indexType": indexType,
- "indexPortal": indexPortal,
- "appIndexPages": appIndexPages,
- "simpleMode": simpleMode,
- "indexCentered": indexCentered,
- "needGray": needGray,
- "appExitAlert": appExitAlert,
- "systemMessageSwitch": systemMessageSwitch,
- "systemMessageCanClick": systemMessageCanClick,
- "contactPermissionView": contactPermissionView,
- "speechScript": speechScript,
- "promotionPageScript": promotionPageScript,
- "nativeAppList": nativeAppList == null ? null : List<dynamic>.from(nativeAppList!.map((x) => x.toJson())),
- "images": images == null ? null : List<dynamic>.from(images!.map((x) => x.toJson())),
- "processFilterList": processFilterList,
- "cmsCategoryFilterList": cmsCategoryFilterList,
- "extendParam": extendParam
- };
- }
- class ExtendParamHomeTabPortal {
- String? portalId;
- bool? hiddenAppBar;
- String? appBarTitle;
- String? pageId;
- String? portalParameters;
- ExtendParamHomeTabPortal({this.portalId, this.hiddenAppBar, this.appBarTitle, this.pageId, this.portalParameters});
- factory ExtendParamHomeTabPortal.fromJson(Map<String, dynamic> json) => ExtendParamHomeTabPortal(
- portalId: json["portalId"],
- hiddenAppBar: json["hiddenAppBar"],
- appBarTitle: json["appBarTitle"],
- pageId: json["pageId"],
- portalParameters: json["portalParameters"],
- );
- Map<String, dynamic> toJson() => {
- "portalId": portalId,
- "hiddenAppBar": hiddenAppBar,
- "appBarTitle": appBarTitle,
- "pageId": pageId,
- "portalParameters": portalParameters,
- };
- }
- class AppStyleImage {
- AppStyleImage({
- this.name,
- this.value,
- this.path
- });
- String? name;
- String? value;
- String? path; // 在线图片 相对地址 如 x_desktop/img/abc.png
- factory AppStyleImage.fromJson(Map<String, dynamic> json) => AppStyleImage(
- name: json["name"],
- value: json["value"],
- path: json["path"],
- );
- Map<String, dynamic> toJson() => {
- "name": name,
- "value": value,
- "path": path,
- };
- }
- class NativeAppList {
- NativeAppList({
- this.id,
- this.key,
- this.name,
- this.displayName,
- this.enable,
- this.iOs,
- });
- int? id;
- String? key;
- String? name;
- String? displayName; // 显示名 如果没有内容就用源码中的国际化名称
- bool? enable;
- IOs? iOs;
- factory NativeAppList.fromJson(Map<String, dynamic> json) => NativeAppList(
- id: json["id"],
- key: json["key"],
- name: json["name"],
- displayName: json["displayName"],
- enable: json["enable"],
- iOs: json["iOS"] == null ? null : IOs.fromJson(json["iOS"]),
- );
- Map<String, dynamic> toJson() => {
- "id": id,
- "key": key,
- "name": name,
- "displayName": displayName,
- "enable": enable,
- "iOS": iOs == null ? null : iOs!.toJson(),
- };
- }
- class IOs {
- IOs({
- this.category,
- this.subcategory,
- this.storyboard,
- this.vcname,
- });
- Category? category;
- Subcategory? subcategory;
- String? storyboard;
- Vcname? vcname;
- factory IOs.fromJson(Map<String, dynamic> json) => IOs(
- category: json["category"] == null ? null : categoryValues.map[json["category"]],
- subcategory: json["subcategory"] == null ? null : subcategoryValues.map[json["subcategory"]],
- storyboard: json["storyboard"],
- vcname: json["vcname"] == null ? null : vcnameValues.map[json["vcname"]],
- );
- Map<String, dynamic> toJson() => {
- "category": category == null ? null : categoryValues.reverse[category],
- "subcategory": subcategory == null ? null : subcategoryValues.reverse[subcategory],
- "storyboard": storyboard,
- "vcname": vcname == null ? null : vcnameValues.reverse[vcname],
- };
- }
- enum Category { NATIVE }
- final categoryValues = EnumValues({
- "native": Category.NATIVE
- });
- enum Subcategory { CODING }
- final subcategoryValues = EnumValues({
- "coding": Subcategory.CODING
- });
- enum Vcname { TODO_TASK, EMPTY }
- final vcnameValues = EnumValues({
- "": Vcname.EMPTY,
- "todoTask": Vcname.TODO_TASK
- });
- class PortalList {
- PortalList({
- this.id,
- this.name,
- this.alias,
- this.description,
- this.portalCategory,
- this.firstPage,
- this.creatorPerson,
- this.lastUpdatePerson,
- this.pcClient,
- this.mobileClient,
- });
- String? id;
- String? name;
- String? alias;
- String? description;
- String? portalCategory;
- String? firstPage;
- String? creatorPerson;
- String? lastUpdatePerson;
- bool? pcClient;
- bool? mobileClient;
-
- factory PortalList.fromJson(Map<String, dynamic> json) => PortalList(
- id: json["id"],
- name: json["name"] ,
- alias: json["alias"],
- description: json["description"],
- portalCategory: json["portalCategory"],
- firstPage: json["firstPage"],
- creatorPerson: json["creatorPerson"],
- lastUpdatePerson: json["lastUpdatePerson"],
- pcClient: json["pcClient"],
- mobileClient: json["mobileClient"],
- );
- Map<String, dynamic> toJson() => {
- "id": id,
- "name": name,
- "alias": alias,
- "description": description,
- "portalCategory": portalCategory,
- "firstPage": firstPage,
- "creatorPerson": creatorPerson,
- "lastUpdatePerson": lastUpdatePerson,
- "pcClient": pcClient,
- "mobileClient": mobileClient,
-
- };
- }
- class EnumValues<T> {
- Map<String, T> map;
- Map<T, String>? reverseMap;
- EnumValues(this.map);
- Map<T, String> get reverse {
- reverseMap ??= map.map((k, v) => MapEntry(v, k));
- return reverseMap!;
- }
- }
|