json模拟数据格式

98 阅读1分钟

格式一

[  {    "Alarm": {      "_Info": "不放行",      "_Status": "Off"    },    "Barricade": {      "Info": "",      "_Status": ""    },    "LED": {      "_Info": "暂未获取到通道状态",      "_Status": ""    },    "Parapet": {      "_Info": "",      "_Status": "Down"    },    "TrafficLight": {      "_Info": "",      "_Status": "Red"    },    "Vehicle": {      "_Info": "",      "_Status": ""    },    "_Status": "Closed",    "_ChannelID": "01",    "_ChannelName": "盐田货运入场1号道"  },  {    "Alarm": {      "_Info": "不放行",      "_Status": "Off"    },    "Barricade": {      "Info": "",      "_Status": ""    },    "LED": {      "_Info": "车牌采集中",      "_Status": ""    },    "Parapet": {      "_Info": "",      "_Status": "Down"    },    "TrafficLight": {      "_Info": "",      "_Status": "Red"    },    "Vehicle": {      "_Info": "",      "_Status": ""    },    "_Status": "Closed",    "_ChannelID": "02",    "_ChannelName": "盐田货运入场2号道"  },  {    "Alarm": {      "_Info": "不放行,报警",      "_Status": "On"    },    "Barricade": {      "Info": "",      "_Status": ""    },    "LED": {      "_Info": "车牌号:粤B3875f,海关不放行,请前往查验厂",      "_Status": ""    },    "Parapet": {      "_Info": "",      "_Status": "Down"    },    "TrafficLight": {      "_Info": "",      "_Status": "Red"    },    "Vehicle": {      "_Info": "",      "_Status": ""    },    "_Status": "Closed",    "_ChannelID": "03",    "_ChannelName": "盐田货运入场3号道"  },  {    "Alarm": {      "_Info": "放行",      "_Status": "Off"    },    "Barricade": {      "Info": "",      "_Status": ""    },    "LED": {      "_Info": "通道开启,欢迎进入",      "_Status": ""    },    "Parapet": {      "_Info": "",      "_Status": "Up"    },    "TrafficLight": {      "_Info": "",      "_Status": "Green"    },    "Vehicle": {      "_Info": "",      "_Status": ""    },    "_Status": "Entering",    "_ChannelID": "04",    "_ChannelName": "盐田货运入场4号道"  }]

格式二

[    {        "name": "home",        "title": "首页",        "icon": "",        "children": []
    },
    {
        "name": "InOutRecords",
        "title": "进出记录",
        "icon": "",
        "children": [
            {
                "name": "containerRecords",
                "title": "集装箱进出记录",
                "icon": "",
                "children": []
            },
            {
                "name": "vehicleRecords",
                "title": "车辆进出记录",
                "icon": "",
                "children": []
            }
        ]
    },
    {
        "name": "messageShow",
        "title": "消息通知",
        "icon": "",
        "children": []
    },
    {
        "name": "systemSetting",
        "title": "系统设置",
        "icon": "",
        "children": [
            {
                "name": "userManagement",
                "title": "用户管理",
                "icon": "",
                "children": []
            },
            {
                "name": "messageSetting",
                "title": "消息设置",
                "icon": "",
                "children": [
                    {
                        "name": "messageGetUser",
                        "title": "消息联系人",
                        "icon": "",
                        "children": []
                    },
                    {
                        "name": "messageRule",
                        "title": "消息通知规则",
                        "icon": "",
                        "children": []
                    }
                ]
            },
            {
                "name": "baseSetting",
                "title": "基础配置",
                "icon": "",
                "children": [
                    {
                        "name": "camera",
                        "title": "摄像头管理",
                        "icon": "",
                        "children": []
                    },
                    {
                        "name": "terminal",
                        "title": "堆场管理",
                        "icon": "",
                        "children": []
                    },
                    {
                        "name": "channel",
                        "title": "通道管理",
                        "icon": "",
                        "children": []
                    }
                ]
            }
        ]
    }
]