Logo
    立即注册
    开放平台
    产品文档
    子品类树子树
    最近更新时间:2022-09-09 18:54:03

    1. 接口描述

    接口URL:https://open.datastory.com.cn/api/datastory.indicator.category.sub-categories 请求方式:POST 描述:通过该接口可查看电商商品的子品类树数据详情,包括:各级品类名、品类ID、创建时间、更新时间等等,具体输出内容可查看输出参数示例。

    2. 输入参数

    以下请求参数列表仅列出了接口请求参数和部分公共参数,完整公共参数列表见公共请求参数。

    参数名称 必选 默认值 类型 参数示例 描述
    appkey string "predeploy" 权限校验标识
    openStrategy boolean false 是否接受缓存
    page integer 1 分页查询的页码,默认1
    pageSize integer "20" 分页查询的单页数据条数,默认20
    subCategoryDto Array of SubCategoryDto (见接口示例) 查询过滤条件

    3. 输出参数

    参数名称 必选 类型 参数示例 描述
    code integer 0 返回状态码,内部定义
    data Array of ResponseDataOfCategoryVo (见接口示例) 查询过滤条件
    msg string "接口返回成功!" 接口返回信息说明,在接口返回失败时会有
    openStrategy booleam false 是否接受缓存
    success booleam true 接口返回是否成功

    4. 数据结构

    4.1 SubCategoryDto

    参数名 必选 类型 参数示例 描述
    depth integer 1 品类深度,查询子品类需要,默认1(返回第一级子品类列表)
    id integer "121" 品类ID
    name string "手机" 品类名称

    4.2 ResponseDataOfCategoryVo

    参数名 必选 类型 参数示例 描述
    dataset [Array of CategoryVo,Array of CategoryVo] (见接口示例) 返回数据集,不同接口返回结果的格式不一样
    dorisTime integer "458" 查询Doris耗时,单位毫秒
    meta array "list" 返回数据格式:list、aggregation、graph
    page integer 1 分页查询的页码
    pageSize integer "20" 分页查询的单页数据条数
    time integer "955" 查询总耗时,单位毫秒
    total integer "34500230" 查询数据总量

    4.2.1 CategoryVo

    参数名 必选 类型 参数示例 描述
    categoryVos array 子品类数据
    createTimestamp integer
    firstCatId integer 1 一级品类id
    fourthCatId integer 56 四级品类id
    secondCatId integer 23 二级品类id
    thirdCatId integer 45 三级品类id
    id int 5626 品类id
    itemId string "e8353343bd2f0927c49986d033abde36" 品类itemId
    name string "3C数码" 品类名称
    level integer 1 品类层级

    5. 示例

    示例1 查看品类的完整品类树结

    输入示例

    {
        "appkey": "predeploy",
        "openStrategy": false,
        "subCategoryDto": {
            "depth": 4,
            "name": "3C数码"
        }
    }

    输出示例

    {
        "success": true,
        "openStrategy": false,
        "code": 0,
        "msg": "接口返回成功!",
        "data": {
            "meta": {
                "datasetType": "list"
            },
            "dataset": [
                {
                    "id": 5626,
                    "itemId": "e8353343bd2f0927c49986d033abde36",
                    "name": "3C数码",
                    "level": 1,
                    "createTimestamp": 1650384000000,
                    "updateTimestamp": 1650384000000,
                    "categoryVos": [
                        {
                            "id": 5627,
                            "itemId": "8774563a256de441849b4642e54d3924",
                            "name": "电脑硬件/显示器/电脑周边",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 5628,
                                    "itemId": "2e7e06e278b1488e083cee5bad598d51",
                                    "name": "虚拟现实设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5638,
                                    "itemId": "60b0e63523f92c814bbdbb458163fd04",
                                    "name": "电脑硬件/显示器/电脑周边其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5639,
                                    "itemId": "d373a79d60d860822cea3a74f466f9ef",
                                    "name": "CPU",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5640,
                                    "itemId": "804df911479a7b7408c02917b6e563b1",
                                    "name": "电脑视听配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5641,
                                            "itemId": "adf6fbc5f7571e164497a6a783868f5e",
                                            "name": "电脑麦克风/话筒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5640,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5642,
                                            "itemId": "bbd3d3cf69b0b4f20b2e8bc319c05852",
                                            "name": "电脑耳机/耳麦",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5640,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5643,
                                            "itemId": "ee639d156421710ef888642479791451",
                                            "name": "摄像头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5640,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5644,
                                            "itemId": "d15279b7f6c4b923894b39c403c749bd",
                                            "name": "电视卡/电视盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5640,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5645,
                                            "itemId": "e562ff70277ca817719f4d8dea5522e5",
                                            "name": "电脑视听配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5640,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5646,
                                    "itemId": "caf80e59d6b6ee4a49e00f30a739a5cb",
                                    "name": "键轴",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5647,
                                    "itemId": "ccb95b34ee811642a099927f8b27eea9",
                                    "name": "机箱电源风扇套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5648,
                                    "itemId": "3ac43c94cc675a3b6e4d98deb6c27970",
                                    "name": "显示器&支架",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5649,
                                            "itemId": "6557d46cd0c4fa6cfb4ba556a0d42863",
                                            "name": "显示器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5650,
                                            "itemId": "5cf79c064e8ad3c583568c5711a508e5",
                                            "name": "便携显示器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5651,
                                            "itemId": "ef28f1727e1ceaa57fb353f377607172",
                                            "name": "组装液晶显示器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5652,
                                            "itemId": "946585e6239938b0bfda980517214e4a",
                                            "name": "显示器&支架其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5653,
                                            "itemId": "dc68047486de34d7fdbe1f74852151e2",
                                            "name": "显示器校色仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5654,
                                            "itemId": "746cdf9485ef53e698161e192a2e0991",
                                            "name": "显示器配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5648,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5655,
                                    "itemId": "4f02869abb0218b6bf72525dfef8ce7d",
                                    "name": "键帽",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5656,
                                    "itemId": "2ae244816943c31bab2a25618e7ababc",
                                    "name": "板载套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5657,
                                    "itemId": "8284e6199481c64a847081fc1e6a27f4",
                                    "name": "准系统主机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5658,
                                    "itemId": "e220eb5a01fdc953dcdbedfc03df898f",
                                    "name": "机械硬盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5659,
                                    "itemId": "82955e58cf1a36c32cf41a670cb8abac",
                                    "name": "CPU主板套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5660,
                                    "itemId": "b0ab8a06b640e5f4709afd10729176e0",
                                    "name": "K歌/直播声卡套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5662,
                                    "itemId": "1e89f8671f526a41ab354cf288aba3cf",
                                    "name": "智能电脑硬件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5663,
                                    "itemId": "e085e4f2fca7ffb636715e85992fbe9c",
                                    "name": "显卡",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5664,
                                    "itemId": "ee8d2f8f324a3b136a585f9307801d37",
                                    "name": "键鼠套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5665,
                                    "itemId": "3165ee58cd8f94fe44e618a8276c0a47",
                                    "name": "固态硬盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5666,
                                    "itemId": "a139a7ffd6b52eb6cc648c41c05d6e68",
                                    "name": "电源",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5667,
                                    "itemId": "b2baa4696a4105e4a66f8b498b989fcb",
                                    "name": "有线鼠标",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5668,
                                    "itemId": "114726f8d5754c2cda23dcf6fafbd281",
                                    "name": "无线鼠标",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5669,
                                    "itemId": "465334a04c4137ab55ed422825cc4544",
                                    "name": "键盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5670,
                                    "itemId": "0d8b3819ed947aaa4bee650f36195329",
                                    "name": "手写输入/绘图板",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5671,
                                    "itemId": "136879a3cf2710fe40900dbea87e622c",
                                    "name": "内存",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5672,
                                    "itemId": "76a08cd6846c4346d42d60fc3c1c98cc",
                                    "name": "声卡",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5673,
                                    "itemId": "439ed02f218572f6c648306802482dcc",
                                    "name": "机箱",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5674,
                                    "itemId": "7cfb8ee2d5e775fea6ce92d0b76b09d6",
                                    "name": "电脑周边",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5675,
                                            "itemId": "b92a5f7ab47fe8db7692aa395f13e9fd",
                                            "name": "图文信息/采集卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5676,
                                            "itemId": "bb2a1ef39b9911495b6faf38d65f2f81",
                                            "name": "耳麦",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5677,
                                            "itemId": "a598bdee672c355c07d44cc55be78eb9",
                                            "name": "CMMB终端",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5678,
                                            "itemId": "33adb9b0fd8672cea515ac04c527c4b6",
                                            "name": "光盘盒/CD包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5679,
                                            "itemId": "a4aae2fcc28c5a0849047bb68bb561b2",
                                            "name": "CRT显示器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5680,
                                            "itemId": "17b9ea93e310f019078c8a782fc0c8bd",
                                            "name": "无线电脑周边产品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5681,
                                            "itemId": "050a16fbe7cfb4c7869d73c6e2d5b974",
                                            "name": "保护屏/防尘罩",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5682,
                                            "itemId": "84a8df443e90bb9581df28b938363633",
                                            "name": "电脑周边其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5683,
                                            "itemId": "fe472ed396c9761a5d29d51a705b1ba4",
                                            "name": "理线带/理线器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5684,
                                            "itemId": "9a37d99e1a94a42a53d69fadde34ac72",
                                            "name": "UPS电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5685,
                                            "itemId": "a4033fdf62667fe9dce1588477c88c97",
                                            "name": "软驱",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5686,
                                            "itemId": "762ac83c20cec410a4300d9c6fbb000f",
                                            "name": "硬盘盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5687,
                                            "itemId": "5b1a437c68228b5729eb0ac894050375",
                                            "name": "绘图板配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5688,
                                            "itemId": "c3adbd9fdd45e1970827d6e2ad953266",
                                            "name": "连接线/连接器/转换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5689,
                                            "itemId": "51c9395cae415a8a05e0606989eff2f5",
                                            "name": "光驱/刻录/DVD",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5690,
                                            "itemId": "7d78f8b02f04945c533b58b007409d9f",
                                            "name": "鼠标垫/贴/腕垫",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 5674,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5691,
                                    "itemId": "01f3502587055d0cbd18409c395204ae",
                                    "name": "散热器/风扇",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 15965,
                                    "itemId": "475ebea51d8ec98822a8a2a91b51a83c",
                                    "name": "电脑硬件主板",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 15974,
                                    "itemId": "e4621cc7d5eb093827490ff80902e9d9",
                                    "name": "工作站/企业级配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 15975,
                                            "itemId": "c77fd08bf5f26e21d6afc31425494bc8",
                                            "name": "企业级电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15976,
                                            "itemId": "0bdac7b85bf3871a3772317d805034c6",
                                            "name": "企业级硬盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15977,
                                            "itemId": "d3a939c9746f4ff5019cc8f2e3a7f7f3",
                                            "name": "企业级内存",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15978,
                                            "itemId": "276794cc8aa645733cd6f694e558a862",
                                            "name": "企业级主板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15979,
                                            "itemId": "018bd7943b151348522accae0c72f96c",
                                            "name": "企业级显卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15980,
                                            "itemId": "569575abbf8dad14a828ee7c6b74fda9",
                                            "name": "企业级显示器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 15981,
                                            "itemId": "7aa279a663d53381f388764fb0f1f53e",
                                            "name": "企业级机箱",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5627,
                                            "thirdCatId": 15974,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 15996,
                                    "itemId": "c7c1123674f2623f27112f29fbec1d40",
                                    "name": "企业级配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5627,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 5692,
                            "itemId": "6b618157b7a0d75b87a02fc849c31e9a",
                            "name": "二手数码",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 5693,
                                    "itemId": "29d90f11dc0ac64474f774b0938afd1b",
                                    "name": "二手数码其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5692,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5694,
                                    "itemId": "f7fe443004fc7d4e304cf10a533edf18",
                                    "name": "二手笔记本电脑",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5692,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5695,
                                    "itemId": "07428d8dc89db1c2af14f27f451dcb34",
                                    "name": "二手平板电脑",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5692,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5696,
                                    "itemId": "abf779550eee6d356076474bb477c72c",
                                    "name": "二手手机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5692,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 5697,
                            "itemId": "83ca206d15d2ae3bb3f17181caf2b424",
                            "name": "3C数码配件",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 5698,
                                    "itemId": "82447d60709a0e22a327c8fe4034ac14",
                                    "name": "MP3/MP4配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5699,
                                            "itemId": "71648957359d04536a19743ca2af8f55",
                                            "name": "MP4屏幕保护膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5700,
                                            "itemId": "6b158d9e085263f77619574a661d23b5",
                                            "name": "MP3/MP4连接线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5701,
                                            "itemId": "307132c898a0f8a94368f91aff44f164",
                                            "name": "FM/MP3发射器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5702,
                                            "itemId": "df2b9ed33e05fce5b925deeedc6e2dbe",
                                            "name": "MP3/MP4充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5703,
                                            "itemId": "ae991f6e850606dbc64194b86b677a52",
                                            "name": "MP3/MP4保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5704,
                                            "itemId": "a51bc8482f256936ca712ee2740b1296",
                                            "name": "MP3/MP4支架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5705,
                                            "itemId": "a2709be3d6af2bd3069a1772727ee915",
                                            "name": "MP3/MP4配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5698,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5706,
                                    "itemId": "cb6851848313bc5ffb89c5c9e0019ad5",
                                    "name": "数码家电保护贴",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5707,
                                            "itemId": "b15806ec73f17c803d7858a4cc01544f",
                                            "name": "智能音箱保护贴",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5706,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5708,
                                            "itemId": "47185e324d274e7bb1d4d4ef88cedbaf",
                                            "name": "扫地机器人贴",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5706,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5709,
                                            "itemId": "d12f9ffb520b7001f0ad6372f1412ddf",
                                            "name": "吹风机炫彩贴",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5706,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5710,
                                            "itemId": "e45a35c8309143e0b1b89325da37eea0",
                                            "name": "数码家电保护贴其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5706,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5711,
                                    "itemId": "180d939bddb88206d50134262df129be",
                                    "name": "摄像机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5712,
                                    "itemId": "cc0c2c09c0f885b6a1a4c258a88839a6",
                                    "name": "3G无线上网卡设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5713,
                                    "itemId": "5ee90e8190339785bca6e9574ab69192",
                                    "name": "平板电脑配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5714,
                                            "itemId": "8055b465712888343569755dcc12a83c",
                                            "name": "平板电脑外接键盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5715,
                                            "itemId": "3a96da8c5a71dcafeb049dc93964e06f",
                                            "name": "平板电脑充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5716,
                                            "itemId": "f483c78ef40ffaad2c79ca5414c6674a",
                                            "name": "平板电脑数据线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5717,
                                            "itemId": "2900141f8add24b2fcbd78bc3e83021d",
                                            "name": "平板电脑保护套/壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5718,
                                            "itemId": "aafeab39081a836ff7a78cca1b8c10a2",
                                            "name": "平板电脑屏幕贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5719,
                                            "itemId": "76346558d23b083f4a9d23cf0a684a7d",
                                            "name": "平板电脑包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5720,
                                            "itemId": "9c0e8422ff102e26a71e535d0b5538e3",
                                            "name": "平板电脑零部件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5721,
                                            "itemId": "b2e9a3086b0ee17590cfab30cb0d4a1b",
                                            "name": "平板电脑底座",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5722,
                                            "itemId": "a75d78946721c535a083ba20d60475af",
                                            "name": "平板电脑配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5723,
                                            "itemId": "e592208e8267c83b50e6dd55518f9bbd",
                                            "name": "平板电脑支架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5713,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5724,
                                    "itemId": "0ff6ecc65a2860234f670f6775f19b7f",
                                    "name": "电教产品配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5725,
                                            "itemId": "757f384bd6e3d824890e8aa4c1df19b6",
                                            "name": "点读机/点读笔配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5724,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5726,
                                            "itemId": "4de2f1fa4958ae06eb0abc568efd188d",
                                            "name": "电子辞典/学习机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5724,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5727,
                                            "itemId": "29f69ec9372b0b0b93f569fa570f8f6a",
                                            "name": "电教产品配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5724,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5728,
                                    "itemId": "a3b3244278fc92ed4fdfecaa5a821442",
                                    "name": "数码周边",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5729,
                                            "itemId": "0eda6b9d373c8d4a6b7a2f0e74266021",
                                            "name": "数码显微镜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5730,
                                            "itemId": "b52fa8c44b2f783198490d2c54f86c66",
                                            "name": "数码设备外接键盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5731,
                                            "itemId": "1bdc94e30f6a30020bbbd29b99a1ebb5",
                                            "name": "数码防丢器保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5733,
                                            "itemId": "1f833cdca71da0079f5c762e7af001bc",
                                            "name": "触摸屏手套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5734,
                                            "itemId": "ef3815726b4b792c97049f43ced085d2",
                                            "name": "PDA/掌上电脑",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5735,
                                            "itemId": "cf25a2cfd81b745c4efb7432261a798a",
                                            "name": "数码维修工具",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5736,
                                            "itemId": "cb2f55bdfcc3a3e48879bbadd85dc3be",
                                            "name": "数据线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5737,
                                            "itemId": "a06d8ab11a93e9796f87e939b906dc5f",
                                            "name": "闪存卡转接套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5738,
                                            "itemId": "ca336cc8510d86490bee105a793855a1",
                                            "name": "音乐枕",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5739,
                                            "itemId": "19eac4870bcf4c6480cf7155574edfe5",
                                            "name": "手写笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5740,
                                            "itemId": "211df9dcb120de317042d6438dfe71b7",
                                            "name": "数码周边其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16028,
                                            "itemId": "31dbeccff97cd401b2302f3fd44ef449",
                                            "name": "数码读卡器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5728,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5741,
                                    "itemId": "69f69eb3deeb09385ed25bfe88ec08aa",
                                    "name": "耳机周边",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5742,
                                            "itemId": "e883b47abe30273ca667c884f0a3dbb7",
                                            "name": "耳机贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5743,
                                            "itemId": "c19b09f0590ddbba4d0175f6546cefaa",
                                            "name": "耳塞保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5744,
                                            "itemId": "3411f4aa8916a2a0525e929756c0087a",
                                            "name": "耳机清洁笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5745,
                                            "itemId": "68089ec22046937d4fbfe69f7a1f957a",
                                            "name": "耳机充电仓",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5746,
                                            "itemId": "0efc61cf63cb7e12d6f1a9b125449592",
                                            "name": "耳机安全带/防丢链",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5747,
                                            "itemId": "9fe2246159da88ab44d7d0f39ba5e432",
                                            "name": "耳机线夹",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5748,
                                            "itemId": "39bb9fefc553a625d3b9af30b3b7caba",
                                            "name": "耳机周边其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5749,
                                            "itemId": "a940294667002c11ba9a85e37dc468c3",
                                            "name": "耳机保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5741,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5750,
                                    "itemId": "8a0caca5df38148317a0751ff2d07f62",
                                    "name": "数码相机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5751,
                                            "itemId": "6fe3b039ef6fb6f6a167191024302a16",
                                            "name": "数码相机电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5752,
                                            "itemId": "cd86d473ee6763970fe9fdcba0fef48d",
                                            "name": "数据连接线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5753,
                                            "itemId": "e89ecc471dfedf2cc5586972c52205f2",
                                            "name": "数码相机充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5754,
                                            "itemId": "a6a28528584f9dcd5822d26a92db13de",
                                            "name": "数码相机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5755,
                                            "itemId": "8229cac67548693b726fb385a67b3b36",
                                            "name": "数码相机包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5756,
                                            "itemId": "251bc4bc665f23f7372be17204a2670f",
                                            "name": "屏幕保护膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5757,
                                            "itemId": "24eeceb1df6784804974c5052e32fe48",
                                            "name": "数码相机适配器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5750,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5758,
                                    "itemId": "7f67f35f5b7ff5551948dc24cfc2575b",
                                    "name": "3C数码配件其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5759,
                                    "itemId": "10a47e3a001b2708738d2d5fc8816af5",
                                    "name": "便携电源",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5760,
                                            "itemId": "b72a9f260ffb2e44e41baac5ed660ef0",
                                            "name": "背夹电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5759,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5761,
                                            "itemId": "76853d0a86551449d08b773e84ec3d59",
                                            "name": "便携电源其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5759,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5762,
                                            "itemId": "51aabeb43ebbbd6bd7b1d43309485426",
                                            "name": "户外电源/移动电站",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5759,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5763,
                                            "itemId": "dbabfa07d99ac04ac354d5e8a780e28f",
                                            "name": "移动电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5759,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5764,
                                    "itemId": "a2cad1fd7f0f9487ac1d92f894ef8f7c",
                                    "name": "数码相框",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5765,
                                    "itemId": "c64d431bdc1287931b9ce3d609911ae8",
                                    "name": "家电影音周边配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5766,
                                            "itemId": "8861be8e1a605b24fee6762e3771aaf0",
                                            "name": "遥控设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5767,
                                            "itemId": "4f371caa859496d57cd497ad4362b559",
                                            "name": "RF头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5768,
                                            "itemId": "7ba7213d534bb8831326e4c233672b20",
                                            "name": "RCA头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5769,
                                            "itemId": "10dd65f3f1b5b8448e4f638a3c673115",
                                            "name": "BNC头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5770,
                                            "itemId": "875abbfcdfd24a5403a5cd8fc66775ee",
                                            "name": "KVM",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5771,
                                            "itemId": "e6a2fbd32ba319239111f563304bbd23",
                                            "name": "AV切换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5772,
                                            "itemId": "fa245c284ed5c1bb1e0e63183e18e3d6",
                                            "name": "分配器/分频器/分支器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5773,
                                            "itemId": "dec710e76af5d75315d3d028174da4af",
                                            "name": "网络切换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5774,
                                            "itemId": "88704b83477b771861f382525dbf811a",
                                            "name": "机顶盒共享器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5775,
                                            "itemId": "62bc3d4d45d5ce550aae4f69260f44d0",
                                            "name": "家电影音周边配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5777,
                                            "itemId": "31aa34914ba7796d5c3ba4092ca6120a",
                                            "name": "F头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5779,
                                            "itemId": "5251cb45201f65bf9144697b5ec19b5e",
                                            "name": "射频器/转换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5780,
                                            "itemId": "f6534750475cfd1d0e379597960392e4",
                                            "name": "分压盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5781,
                                            "itemId": "28858b8f1fc08420d647cbc7e1288924",
                                            "name": "插头/接口",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5782,
                                            "itemId": "3ab77ed944b9a548df76753da7f9e751",
                                            "name": "微波炉面板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5783,
                                            "itemId": "e7339a0f68e692a3c6eba703e70f8deb",
                                            "name": "3D立体眼镜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5784,
                                            "itemId": "a4f0c182411a289c3f3c7fd1f0295b8d",
                                            "name": "隔离器/耦合器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5785,
                                            "itemId": "382a02b18827522978abd707c879c66c",
                                            "name": "电视高压包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5786,
                                            "itemId": "26344d11220356d3a269771938aafd11",
                                            "name": "VGA切换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5765,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5787,
                                    "itemId": "99d66e810d7330f83b4e77ada94a180e",
                                    "name": "笔记本电脑配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5788,
                                            "itemId": "704891d4804c134457398744377c5a95",
                                            "name": "笔记本多功能支架/桌",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5789,
                                            "itemId": "eeb34ea4b86c9db7f2ef8d5157a9c196",
                                            "name": "笔记本零部件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5790,
                                            "itemId": "d4c4a2966e7509e25bc938d96f691710",
                                            "name": "笔记本炫彩贴",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5791,
                                            "itemId": "7cc7f36ac26c214f04cf52db29e92607",
                                            "name": "笔记本屏幕贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5792,
                                            "itemId": "738d98e3961729819a6656ced222fdd0",
                                            "name": "笔记本电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5793,
                                            "itemId": "9d3b7133d81e90d69ae676157206f2b5",
                                            "name": "笔记本电脑配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5794,
                                            "itemId": "b8256803f0d3e54ac298484a9e3c2b13",
                                            "name": "笔记本电脑包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5795,
                                            "itemId": "30677ecf5a88262714f9491df4beaa0f",
                                            "name": "笔记本膝上桌",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5796,
                                            "itemId": "03170dc2537b91c735cab733c7f7b47e",
                                            "name": "苹果视频线/转换线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5797,
                                            "itemId": "131dc4c8771ee892d106b12aa9cb829c",
                                            "name": "键盘刷",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5798,
                                            "itemId": "4a2cd9cfb2d236afff769c6312fc8a9f",
                                            "name": "笔记本个性小贴纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5799,
                                            "itemId": "828717f59e984278fcfd6dd5b4dc2956",
                                            "name": "笔记本键盘保护膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5800,
                                            "itemId": "f3a7e8a0c8f45ade7cb7dd54150084eb",
                                            "name": "笔记本保护壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5801,
                                            "itemId": "5feb079163448e3cd3b8a4cdaa8c48b7",
                                            "name": "笔记本电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5802,
                                            "itemId": "fd893d282163f664665bbb0fa9cff663",
                                            "name": "笔记本散热器/降温卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5787,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5803,
                                    "itemId": "f54db062cfb9c736472b101cfc794bac",
                                    "name": "电子书配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5804,
                                            "itemId": "f7b17c54df979ab337bbdbfaa0e6fcc5",
                                            "name": "电子书手写笔/电磁笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5805,
                                            "itemId": "b127b83d4c6f26f9581bcac11f9bd362",
                                            "name": "电纸书充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5806,
                                            "itemId": "e6a5993ce2d122208e17b37864e390f9",
                                            "name": "电纸书防护包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5807,
                                            "itemId": "f3481a04f10be798486b95173cd67962",
                                            "name": "电纸书屏幕贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5808,
                                            "itemId": "25a48ad574b121b154735692efddb649",
                                            "name": "电子书保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5809,
                                            "itemId": "41ee609284e942fd49517cc5e445adf5",
                                            "name": "电子书灯",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5810,
                                            "itemId": "71bbd1536c6dfd8e33f81b808b0ef78f",
                                            "name": "电子书配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5811,
                                            "itemId": "7d0a875c83588d2a38550adf198e2f6e",
                                            "name": "电纸书数据线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5803,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5812,
                                    "itemId": "d499399cc711b37a22dd7eedbdd33124",
                                    "name": "USB数码周边",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5813,
                                            "itemId": "20f612dbfd22fc9fc6d70f1590525b21",
                                            "name": "USB延长线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5814,
                                            "itemId": "5753280759b6b9945867729963c412ba",
                                            "name": "USB多功能数码宝",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5815,
                                            "itemId": "e39d8448ddfc94b20473ba84bd00dd54",
                                            "name": "USB HUB/转换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5816,
                                            "itemId": "f0a96df32ee6bc0c2a3d5154e785e19f",
                                            "name": "USB显示器增高架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5817,
                                            "itemId": "9617153d4535f8442ce8be2e2b2df4db",
                                            "name": "USB食品加热包/保温盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5818,
                                            "itemId": "d140be42741a03340a840532b756fa4b",
                                            "name": "USB暖手鼠标垫",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5819,
                                            "itemId": "82578aab5801aad69d1068d251c86d12",
                                            "name": "USB翻页激光笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5820,
                                            "itemId": "9be21901648e442b11516beb11073c9f",
                                            "name": "USB氧吧/空气清新器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5821,
                                            "itemId": "f17e1a90c9b3cf68fb7cca8680af5785",
                                            "name": "USB电话机/网络电话机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5822,
                                            "itemId": "0893720b33b4e17be1c335e8298b55ac",
                                            "name": "USB保暖坐垫/靠垫",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5823,
                                            "itemId": "edfc0a89661d43ba7c1f960263c2b482",
                                            "name": "MSN聊天伴侣",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5824,
                                            "itemId": "46dad6ebaf0489c253a0a510d7fe0b96",
                                            "name": "USB碎纸机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5825,
                                            "itemId": "4121eccdab955dea08fa825220e75bed",
                                            "name": "USB灯",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5826,
                                            "itemId": "858c2f0724154001d16d7e9d6552fa7f",
                                            "name": "USB驱蚊器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5827,
                                            "itemId": "e2537980f894d4864b3c6e2ea17cc944",
                                            "name": "USB暖手宝/暖手袋",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5828,
                                            "itemId": "e6bfd579625cfd95227768723feee442",
                                            "name": "USB吸尘器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5829,
                                            "itemId": "6be1bceb82a815b0b4ba563b88361160",
                                            "name": "USB数码周边其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5830,
                                            "itemId": "04f3eb1e2b609e88c5526c85d000db0c",
                                            "name": "USB电脑锁/防盗器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5831,
                                            "itemId": "4994bf6adee230922a04cc6de0f22a12",
                                            "name": "USB暖手鼠标套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5832,
                                            "itemId": "3273b537879b8e1d365c1ab61a6fe67e",
                                            "name": "加密狗",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5833,
                                            "itemId": "9ec8a7d694b2c1e9902178416d54ba27",
                                            "name": "USB暖手套/暖脚鞋",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5834,
                                            "itemId": "350c60f20848fd50880f94f9a88e9a92",
                                            "name": "USB烟灰缸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5835,
                                            "itemId": "7580bbf836a9a140aa3cc2dc78fc3a76",
                                            "name": "USB迷你冰箱",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5836,
                                            "itemId": "b4dc32a83be35e16716348d8857fb7ac",
                                            "name": "USB Humping Dog",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5837,
                                            "itemId": "bae0d6ce66b999b9b03204e883d94b2c",
                                            "name": "USB保温碟/保温垫",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5838,
                                            "itemId": "502ce2b3f757370737f94a868d29231a",
                                            "name": "USB加湿器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5839,
                                            "itemId": "113a7748aed3be5582d711b4cb149c1c",
                                            "name": "USB风扇",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5840,
                                            "itemId": "29fcac1881dab494610ef5cc97bb4933",
                                            "name": "USB摆设品/装饰品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5841,
                                            "itemId": "1fdf8bf8d766c837fea6c85ff71bf5fa",
                                            "name": "USB按摩器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5812,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5842,
                                    "itemId": "53740160019339c4dc6e00d7d07d307c",
                                    "name": "数码包/收纳/整理",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5843,
                                            "itemId": "ba028ca78c5f8454f2706659991f26e4",
                                            "name": "耳机绕线器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5842,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5844,
                                            "itemId": "fa7a88d78b5646605ca1276a44f57844",
                                            "name": "电池收纳盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5842,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5845,
                                            "itemId": "29698b92741bcb6b6a56bc9b998158da",
                                            "name": "线缆收纳器/集线器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5842,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5846,
                                            "itemId": "d88525b2d1f9ffe34b8812d5e9694add",
                                            "name": "数码收纳整理包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5842,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5847,
                                            "itemId": "f7829f98b8381fefd7b9cb90ef327dc8",
                                            "name": "数码包/收纳/整理其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5842,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5848,
                                    "itemId": "95b05c77cb878746fbf14788492f0633",
                                    "name": "车载手机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 5849,
                                    "itemId": "b865587e6b097f56183e31b5f46acf86",
                                    "name": "直播/摄影配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5850,
                                            "itemId": "0a03039783dff4e463477561552910b6",
                                            "name": "脚架/云台",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5851,
                                                    "itemId": "abb4892c16b3963c83543b02281293b0",
                                                    "name": "云台手机夹",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5852,
                                                    "itemId": "c333b878be67297577bd293a448313b2",
                                                    "name": "云台图传设备",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5853,
                                                    "itemId": "3ae48cf90986ea5f142dae8b48977f68",
                                                    "name": "脚架配件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5854,
                                                    "itemId": "fe880b182677319ff862f573c06c7b44",
                                                    "name": "云台拓展配件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5855,
                                                    "itemId": "1aa43b4fb39bdc6863ed3f1529d61bbe",
                                                    "name": "云台手柄",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5856,
                                                    "itemId": "5b12ecb3a9281bd47c0aa3c39e820ca7",
                                                    "name": "云台",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5857,
                                                    "itemId": "ddcf78935034e0a3044576db34646445",
                                                    "name": "摄影梯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5858,
                                                    "itemId": "48394ebfbdd49fd516e4fe7c3dd348d3",
                                                    "name": "云台电池与充电器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5859,
                                                    "itemId": "591db77c200682723e1f6f437d038cef",
                                                    "name": "脚架包",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5861,
                                                    "itemId": "ec9949647435add9b1e06f53945be49c",
                                                    "name": "快装板",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5862,
                                                    "itemId": "0e371e66b2906c02a87740c18e12a76c",
                                                    "name": "脚架",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5863,
                                                    "itemId": "13d06e4abd07ab0160230bc7bf688ba3",
                                                    "name": "云台监视器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5850,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5872,
                                            "itemId": "b3e671fb46e9ecee09228d40655c9c81",
                                            "name": "提词器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5873,
                                            "itemId": "5198c13bbb207caf180d95f8578c7ccc",
                                            "name": "镜头附件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5874,
                                                    "itemId": "f53df103928671edbe480b9ce292f4b8",
                                                    "name": "转接环",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5875,
                                                    "itemId": "8fbf666c53f7514702cc430d3b638ae3",
                                                    "name": "增距镜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5876,
                                                    "itemId": "115d544d25a578c425f743d6988a8808",
                                                    "name": "镜头袋/镜头筒",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5877,
                                                    "itemId": "01a45ae2456e4ffa20f56d431f18ba49",
                                                    "name": "单反机身盖",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5878,
                                                    "itemId": "1c3b3acf52bb8abb797d734fd4e5fcd4",
                                                    "name": "镜头盖",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5879,
                                                    "itemId": "8cd304d62e1a4fbf2c7b99eeb2c7c6cd",
                                                    "name": "遮光罩",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5880,
                                                    "itemId": "d91a96a0f711ecf1d09b225cf754f257",
                                                    "name": "滤镜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5881,
                                                    "itemId": "26f562db15ff259a9ec7f9b05905683d",
                                                    "name": "镜头附件其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5882,
                                                    "itemId": "2803b9c89209b7b276b3950adc0108c5",
                                                    "name": "脚架接环",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5873,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5883,
                                            "itemId": "93af7f009e0a503a9d73b74fa085e712",
                                            "name": "相机/摄像滑轨",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5884,
                                            "itemId": "13ad235d29bf5c144a352a97fbe5b550",
                                            "name": "闪光灯",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5885,
                                                    "itemId": "468e753482dcb3ad750c3338238bfca7",
                                                    "name": "闪光灯配件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5884,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5886,
                                                    "itemId": "a071ad10e095c3f10a84881cb3e02fe5",
                                                    "name": "闪光灯其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5884,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5887,
                                                    "itemId": "0002ec76869ae20a875f866c743eac27",
                                                    "name": "相机闪光灯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5884,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5888,
                                            "itemId": "b13e5513d1fc1a279b43a1783d436791",
                                            "name": "影棚设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5889,
                                                    "itemId": "35d6e3599a6e2490d4bcf0dcaf4ce55f",
                                                    "name": "摄影台/静物台",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5890,
                                                    "itemId": "fefa7d3f41a480a3513aff11d6f6c525",
                                                    "name": "外拍灯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5891,
                                                    "itemId": "18aa104d304fe1c8f99405371923632a",
                                                    "name": "背景布类",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5892,
                                                    "itemId": "5e353855477d53017924b61f44aa39b8",
                                                    "name": "影棚设备其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5893,
                                                    "itemId": "8501265a9967e21d43fbf3326ef965f7",
                                                    "name": "反光器具",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5894,
                                                    "itemId": "67ab554b0f5e69bf38534f60e7672bf8",
                                                    "name": "摄影棚",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5895,
                                                    "itemId": "53f7ba07c3fa6ece376db8af6fd0fda5",
                                                    "name": "灯附件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5896,
                                                    "itemId": "c179d06056d49cb396aa6f1cf6f5c96c",
                                                    "name": "柔光器具",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5897,
                                                    "itemId": "676a663639e386f0b7d801811d2cc98d",
                                                    "name": "影室灯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5898,
                                                    "itemId": "bbd8e889cd7bb16abad6b9974b7a8367",
                                                    "name": "辅助道具类",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5888,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5899,
                                            "itemId": "3da75e8273292328250b60890cdfa572",
                                            "name": "背包/箱具",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5900,
                                                    "itemId": "873c5dfd9505c215501581b0f2602773",
                                                    "name": "保护箱",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5901,
                                                    "itemId": "9e86e0b24dec9b21e0d2b13b0bebabfe",
                                                    "name": "防潮箱",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5902,
                                                    "itemId": "419d3d13516621a0b4ed4d65e627b5fa",
                                                    "name": "防寒设备",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5903,
                                                    "itemId": "b8fc2fcf1e1cc10fad22efa25d0dca3d",
                                                    "name": "背包/箱具其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5904,
                                                    "itemId": "eefdc8cf026558faf2e4e17260822af5",
                                                    "name": "摄影包",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5905,
                                                    "itemId": "e9b90b78c2356d90b6f32b68b2697ae1",
                                                    "name": "包/箱配件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5899,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5906,
                                            "itemId": "7ecf2c6debf769236a1f8c623da7b05e",
                                            "name": "机身附件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5907,
                                                    "itemId": "904178285901f744b5d452684d4ddabf",
                                                    "name": "相机专用遥控器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5908,
                                                    "itemId": "f34ec41a55f6e0d2fac55bfdc9538c47",
                                                    "name": "对焦屏",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5909,
                                                    "itemId": "1ac1bd698809559b34cbb80973d0ea4f",
                                                    "name": "无线传输设备",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5910,
                                                    "itemId": "1e8de3c3ea16aa9f386b53c14de72ca2",
                                                    "name": "机身附件其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5911,
                                                    "itemId": "424982f89be434d1e28ae9c5983dbd5c",
                                                    "name": "相机挂绳",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5912,
                                                    "itemId": "f8d4780f91bcb614e4c101a163a1cf37",
                                                    "name": "取景器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5913,
                                                    "itemId": "8e62e29dbb44c68a81de7972656a1467",
                                                    "name": "快门线",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5914,
                                                    "itemId": "eab6ccc3d97550fe683b38677ab1eacc",
                                                    "name": "相机眼罩",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5915,
                                                    "itemId": "8abc45dfe68cc4ebd38f2f19180c1674",
                                                    "name": "单反手柄",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5916,
                                                    "itemId": "9123119ecd435935329d028b4a0840ce",
                                                    "name": "热靴水平仪",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5917,
                                                    "itemId": "a06bd7a7eed72d4bc20de0722791a36e",
                                                    "name": "相机腕带",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5918,
                                                    "itemId": "1ed7326b5f1a8b2ab6c6a36597e9b179",
                                                    "name": "相机背带",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5919,
                                                    "itemId": "35425f16c697060b0b57184156db2028",
                                                    "name": "液晶屏保护膜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5906,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5920,
                                            "itemId": "68a634766961030eda474161d4456d29",
                                            "name": "单反/单电专用电池电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5921,
                                                    "itemId": "ac3e446b6164417fff81bf9f3f27d563",
                                                    "name": "单反/单电电池",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5920,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5923,
                                                    "itemId": "42ef7db523462c3a5412031306bf7975",
                                                    "name": "单反/单电充电器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5920,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5924,
                                                    "itemId": "4fb2b181c474107a24edb7082c4466d5",
                                                    "name": "单反/单电适配器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5920,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5925,
                                            "itemId": "8ac3f4ea5c5de07693b9a64f8e998451",
                                            "name": "色彩管理",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5926,
                                                    "itemId": "1c43e914b3ecd5f6ee59e3302b9e44da",
                                                    "name": "灰板",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5925,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5927,
                                                    "itemId": "1003c480400628ba4acc5c44e9110398",
                                                    "name": "白平衡镜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5925,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5928,
                                                    "itemId": "fbdfb50d4e8c1e700c163ecfc1233299",
                                                    "name": "色彩管理其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5925,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5929,
                                                    "itemId": "24b4f9b6660fae1d233695611b8d3098",
                                                    "name": "相机色卡",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5925,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5930,
                                                    "itemId": "ebe6059f0201084f472c3057dad4904c",
                                                    "name": "校色仪",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5925,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5931,
                                            "itemId": "e31c78657a4dd24d369f59f2b9676470",
                                            "name": "清洁用品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5932,
                                                    "itemId": "30e55f7942f2cf0d06417d95be4163a1",
                                                    "name": "毛刷",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5934,
                                                    "itemId": "24fda07e94ee0c7791d2b67df7ab67f7",
                                                    "name": "镜头纸/镜头布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5935,
                                                    "itemId": "d4a372b659558be29b56319c558459f5",
                                                    "name": "高压气罐",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5936,
                                                    "itemId": "763041f2a75f27c34d62971b26e3a88b",
                                                    "name": "镜头笔",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5937,
                                                    "itemId": "f9721104a09316d28afe5f2cc9e6b8a4",
                                                    "name": "气吹",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5938,
                                                    "itemId": "5b02ac9021f6e1a5158cb2ec9ed5c288",
                                                    "name": "cmos清洁",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5939,
                                                    "itemId": "338d38745e2c0389b96081c69f05db0b",
                                                    "name": "清洁液",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5940,
                                                    "itemId": "d7cd0b7e8b20957e96d80cb60b60b049",
                                                    "name": "擦屏布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5941,
                                                    "itemId": "0b9abd695ae4ceeee9f4955fe8b49cd3",
                                                    "name": "清洁套装",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5849,
                                                    "fourthCatId": 5931,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5942,
                                            "itemId": "48bc748dbcc7d8abf8587f0dc7f8b523",
                                            "name": "直播/摄影配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16039,
                                            "itemId": "0a94b3ab380b15153fe6e29f19688693",
                                            "name": "专业摄影背心",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16040,
                                            "itemId": "a4dbc261c615ca7eff3c75f698de9579",
                                            "name": "直播/摄影清洁用品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16054,
                                            "itemId": "1903232c0223c2786cd121f3f1210362",
                                            "name": "说明书/使用指南",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16055,
                                            "itemId": "eacb1f462902d2b07466ba6107dec405",
                                            "name": "数码伴侣",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16072,
                                            "itemId": "88b9ce38d58ac76aa0ef8b10d4407b9d",
                                            "name": "测光表",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16084,
                                            "itemId": "2fbd79a966256ade720a2e2094e77d6c",
                                            "name": "显示器/打印机色彩校正仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16106,
                                            "itemId": "fba0548fac73ff117c29e2fee292ec30",
                                            "name": "数码望远镜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16111,
                                            "itemId": "fbe8818f92f37b82c8a4784c5d971507",
                                            "name": "广角镜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5849,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5943,
                                    "itemId": "15af1a8f77a812a925318b130d518082",
                                    "name": "手机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5944,
                                            "itemId": "a1a746dfcb1a59874a7386d1cc8f3773",
                                            "name": "手机零部件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5945,
                                            "itemId": "5a7ef86aa3fe99f68655be3d7425863e",
                                            "name": "手机镜头保护贴",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5946,
                                            "itemId": "68e82a10ae317c43c90b6e12f7e38b3e",
                                            "name": "送话器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5947,
                                            "itemId": "f1a635b2e18cedc70e309be6758d2761",
                                            "name": "手机拍照配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5948,
                                                    "itemId": "1496fed3cf666da24549344d3e7bab2c",
                                                    "name": "手机镜头",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5947,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5950,
                                                    "itemId": "0ce77991e2afa1f57c69b0c89ec81b30",
                                                    "name": "自拍杆/架",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5947,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5951,
                                                    "itemId": "8ab697ff96dc4c9a589d1c18c3ce4a61",
                                                    "name": "手机拍照配件其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5947,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16037,
                                                    "itemId": "194f35a20536d08cd67ddceb0ba02032",
                                                    "name": "手机拍照遥控器",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5947,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5952,
                                            "itemId": "2cd10149290b9f68f33401fb526d2e8b",
                                            "name": "手机支架/手机座",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5953,
                                            "itemId": "2be1c79c56698f2c6136952290dd0c49",
                                            "name": "手机智能按键",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5954,
                                            "itemId": "7c7e19e0ba949a1a1b3c1634dc304e65",
                                            "name": "手机数据线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5955,
                                            "itemId": "20684eee9b5eb23267f6921e2ae76cdc",
                                            "name": "手机饰品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5956,
                                                    "itemId": "fd9bc61e2152ae24b768ffe473aa0ddf",
                                                    "name": "手机贴纸",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5955,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5957,
                                                    "itemId": "0e19b94296e404b16101660a1e2da96a",
                                                    "name": "手机饰品其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5955,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16038,
                                                    "itemId": "8620efe16fa5c5976eb7ea93a9e67530",
                                                    "name": "手机挂件",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5955,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5959,
                                            "itemId": "8aa6a6412e6ebe55a246fc2468fe298c",
                                            "name": "手机同屏器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5960,
                                            "itemId": "8a205511ffb0088289db5ccc7d3ef05d",
                                            "name": "手机防尘塞",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5961,
                                            "itemId": "21e447afa1617b606d2a26d14b46f97e",
                                            "name": "手机充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5962,
                                            "itemId": "8fe7f0186e22af465a5fc8de67252a7e",
                                            "name": "充电器保护套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5963,
                                            "itemId": "74e6b25ca3a79d3ccef8cae1e3dceac9",
                                            "name": "手机保护套/壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5964,
                                            "itemId": "7a9fb8f54b4189a4c1a0680500565397",
                                            "name": "手机贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5965,
                                            "itemId": "3bd2f6c951656d579caf44d9c8958955",
                                            "name": "SIM卡相关",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5966,
                                                    "itemId": "d5a8cfad4cabce0c942c942a76780fbb",
                                                    "name": "SIM 剪卡钳",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5965,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5967,
                                                    "itemId": "686e6833cac3f75bf90698a2f7061fe1",
                                                    "name": "SIM卡相关其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5965,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5968,
                                                    "itemId": "d32c0f38d2c7d2a601ada4ea1325e705",
                                                    "name": "苹果卡槽",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5965,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5969,
                                                    "itemId": "d631b44e7faa7fe3a8e25151708e6d1e",
                                                    "name": "苹果取卡针",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5965,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5970,
                                            "itemId": "15222cd9b53fd5405fef3c654fd355c8",
                                            "name": "手机红外遥控器/发射器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5971,
                                            "itemId": "d8e08d66f322a4156eefff4adcaecc2d",
                                            "name": "手机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5972,
                                            "itemId": "7715f2b00665f1d7d22faa59a5c84725",
                                            "name": "手机散热器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5973,
                                            "itemId": "c536acf1f91f20e7a8dbfa87e0a00901",
                                            "name": "手机屏幕总成",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5974,
                                            "itemId": "d76bf3285d38c0c3ffe538aa2e3de7e6",
                                            "name": "手机电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5975,
                                            "itemId": "abee3fc22b76e1ffbaa88ad59b09eee5",
                                            "name": "手机直播配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5976,
                                                    "itemId": "7d233e70f47227a1d4df9e7b3dd93423",
                                                    "name": "手机直播配件其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5975,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5977,
                                                    "itemId": "c123843a3ccdcdb51770aaa3ea7c952d",
                                                    "name": "手机直播补光灯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5975,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5978,
                                                    "itemId": "d13e05bc97983c6d142b90412a0ac149",
                                                    "name": "直播专用支架",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5943,
                                                    "fourthCatId": 5975,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5979,
                                            "itemId": "d45dd8da627a75dbbcacf12db358c713",
                                            "name": "手机屏幕放大器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5980,
                                            "itemId": "55845a7ff2d27aff408790cd61c626de",
                                            "name": "配件礼盒套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5943,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 5981,
                                    "itemId": "fb48008ff3b80a988a37ad018845d4b1",
                                    "name": "胶片相机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 5982,
                                            "itemId": "55724ca2e963c9cdf7ba768260cd6748",
                                            "name": "胶片相机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5981,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 5983,
                                            "itemId": "a02686f48f9afeed0a135c58d316a509",
                                            "name": "Lomo配件及周边",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5981,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5984,
                                                    "itemId": "31edf90ae33e31561e5901bac68eb3a5",
                                                    "name": "Lomo潜水盒",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5983,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5985,
                                                    "itemId": "1ec416e6c8bdc11183ab511ec66f7940",
                                                    "name": "Lomo配件及周边其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5983,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5986,
                                                    "itemId": "ca56837183eb9e04d3682786b3edcd93",
                                                    "name": "Lomo闪光灯",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5983,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5987,
                                                    "itemId": "bce5a192d79982072887a56860aaf0e8",
                                                    "name": "Lomo相机包",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5983,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5988,
                                                    "itemId": "e3ad3f3108fa331cf0d7e6160d855cec",
                                                    "name": "Lomo镜头",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5983,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5989,
                                            "itemId": "40a066acec1ceece8b372166f90be8f7",
                                            "name": "拍立得配件及周边",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5981,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5990,
                                                    "itemId": "3d778cb089e233ac60c986ccbe4f5cdd",
                                                    "name": "拍立得配件及周边其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5991,
                                                    "itemId": "adeac4c6f0f8d4d2b1a9b9b1e3b0a6e5",
                                                    "name": "一次成像相册",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5992,
                                                    "itemId": "7dec0cbea4abfe4f6b37f332f3d3ee1f",
                                                    "name": "照片夹子",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5993,
                                                    "itemId": "d8f7b823197d4174c67bb5e741374db6",
                                                    "name": "相片角贴",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5994,
                                                    "itemId": "444cff11115e51ccb70014792cd88861",
                                                    "name": "自拍镜头",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5995,
                                                    "itemId": "43ab93b3c92a4e4676f0f1bc9726df77",
                                                    "name": "一次成像相机专用包",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5996,
                                                    "itemId": "5cfb23de57eeb1c17e7f043d933ca19b",
                                                    "name": "涂鸦笔",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5989,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 5997,
                                            "itemId": "0f568183fb533e963c718107302c2531",
                                            "name": "胶片胶卷",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 5981,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 5998,
                                                    "itemId": "1d86458d7e79cf1095fda5149c01c1c1",
                                                    "name": "胶片胶卷其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5997,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 5999,
                                                    "itemId": "cd5348891527edf565f91086899299bc",
                                                    "name": "快显胶片",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5997,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6000,
                                                    "itemId": "a55664c4536c3f08065dffc6368a412d",
                                                    "name": "胶卷",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 5697,
                                                    "thirdCatId": 5981,
                                                    "fourthCatId": 5997,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        }
                                    ]
                                },
                                {
                                    "id": 6001,
                                    "itemId": "de7c8fdd0c580a8b8237c372124ae96c",
                                    "name": "干电池/充电电池/套装",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 5697,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6002,
                                            "itemId": "7caff24d23cfe0043ddf8f158db61fb0",
                                            "name": "干电池/充电电池/套装其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6003,
                                            "itemId": "6ab145e4d68b87ef0034685a75273f2b",
                                            "name": "通用电池充电套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6004,
                                            "itemId": "62ebae458e9173bca8ced49080b25a18",
                                            "name": "18650电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6005,
                                            "itemId": "828f963e8b90a7ca492e1555e53f0552",
                                            "name": "相机/摄像机专用充电套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6006,
                                            "itemId": "b0bf482437bbcd1db1022fb730bdb166",
                                            "name": "普通干电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6007,
                                            "itemId": "19b2fab3eb184d43c9c04ae9fe41eab8",
                                            "name": "纽扣电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6008,
                                            "itemId": "a21b97706bfc460d49332f4b96236284",
                                            "name": "18650电池盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 5697,
                                            "thirdCatId": 6001,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "id": 6009,
                            "itemId": "42b51bc74e6ae6a20ce0659071e0ace7",
                            "name": "手机",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000
                        },
                        {
                            "id": 6010,
                            "itemId": "209cadfa40579f3ed0f7d6a06809d76c",
                            "name": "数码相机/单反相机/摄像机",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6011,
                                    "itemId": "ad4cc8c03943ee37491eabc45d4163a7",
                                    "name": "运动相机/数码摄像机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6012,
                                    "itemId": "36910743af4b2ebb1daefc4e4463f8ff",
                                    "name": "单电微单",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6013,
                                    "itemId": "fcca040bc4461d1a67ac07ab930d7753",
                                    "name": "数码相机/单反相机/摄像机其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6014,
                                    "itemId": "5f59d048a595f265a37153f574699954",
                                    "name": "胶卷相机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6015,
                                            "itemId": "92188560712607f1c12031f52111602b",
                                            "name": "一次成像",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6016,
                                            "itemId": "bf01be2db5ee24ac03b1bfb0b7d2cdcc",
                                            "name": "135胶片单反",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6017,
                                            "itemId": "1bf358f45f1b88c833e3a64c0a940f3f",
                                            "name": "胶卷相机其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6018,
                                            "itemId": "25f79455808a8a27b4d639dce6d57e35",
                                            "name": "特殊相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6019,
                                            "itemId": "0141e37a10776bf472b98d91a74d744f",
                                            "name": "大中幅相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6020,
                                            "itemId": "cb100b7387eeb16e623006bdb67b8e57",
                                            "name": "一次性相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6021,
                                            "itemId": "49443e1ec72cb75de2e2388b05f07b74",
                                            "name": "傻瓜相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6022,
                                            "itemId": "9864263606823ae2fc21b34f8cf3f5e6",
                                            "name": "收藏相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6023,
                                            "itemId": "b5be3afe36a2e2ddd8bd1055c828fffb",
                                            "name": "旁轴相机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6010,
                                            "thirdCatId": 6014,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6024,
                                    "itemId": "a173f9a802b4763bc6a26e5da26908bb",
                                    "name": "普通数码相机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6025,
                                    "itemId": "95ce4c870dde55b121de6ea1e4863414",
                                    "name": "LOMO",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6026,
                                    "itemId": "96415233e361aac2314f618f4414b119",
                                    "name": "全景相机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6027,
                                    "itemId": "dfe2bd05ce03817e29df00ead38d46d8",
                                    "name": "专业数码单反",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6028,
                                    "itemId": "8db511f080ba4ab9bc7ac87ccb47fb0a",
                                    "name": "单反镜头",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6010,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 6029,
                            "itemId": "211a06bd8a580991000cc7cac657d602",
                            "name": "智能设备",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6031,
                                    "itemId": "07df69d42026e0c29a09bab0e4cf88b4",
                                    "name": "智能手表",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6032,
                                    "itemId": "bcdd41efe27053d3f82b8fc2fe22b783",
                                    "name": "智能语音转译设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6033,
                                    "itemId": "6be4a766523d567ce825fd0191c144e3",
                                    "name": "智能设备其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6034,
                                    "itemId": "7525b6674abb1e947e12752720092cf5",
                                    "name": "智能设备配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6035,
                                            "itemId": "bcdb86f21ca6652955a3ceeae9981a68",
                                            "name": "智能手表贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6034,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6036,
                                            "itemId": "3ea60d5b11d4d997312d2525bc2ad3af",
                                            "name": "智能手表手环表带/腕带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6034,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6037,
                                            "itemId": "172f9ea5895cf83d6f5ce173a04a5952",
                                            "name": "智能设备配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6034,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6038,
                                    "itemId": "0ea58a9438e2c803480ebf3a1ffe026e",
                                    "name": "智能翻译机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6039,
                                    "itemId": "31ac7dae9aa21503c32f6fee2b7a82fd",
                                    "name": "智能摄像",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6040,
                                    "itemId": "c6670cd986c1e6c82716276e0dc32ad4",
                                    "name": "智能机器人",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6041,
                                    "itemId": "23a953e5f10573e6228709d6b31ba188",
                                    "name": "运动跟踪器/防丢贴",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6042,
                                    "itemId": "48dc49631d78238bf197d6cd263207ae",
                                    "name": "智能配饰",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6043,
                                    "itemId": "21d2daccc2460a7faac1dd8a7753f5a0",
                                    "name": "智能支付终端",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6044,
                                    "itemId": "6b16a802f9427f7ba852689e336a66e6",
                                    "name": "智能儿童手表",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6045,
                                    "itemId": "81b1fff55bd7d34124ab109058b41fb7",
                                    "name": "智能健康",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6046,
                                    "itemId": "5d8f3ea8fc115dc35aacdd871f76815f",
                                    "name": "智能出行",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6047,
                                    "itemId": "acee864856c35ac3c34b6e33be03d0d1",
                                    "name": "XR设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6048,
                                            "itemId": "789e81518ed944aabaa74ff466fe5b5d",
                                            "name": "智能眼镜/VR设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6047,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6049,
                                            "itemId": "edb3f80cd8ca5df45444c83aafe0477e",
                                            "name": "AR设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6047,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6050,
                                            "itemId": "a1f6535aa894c6a02bdee1d121f9b752",
                                            "name": "MR设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6047,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6051,
                                            "itemId": "77f0a22a28d5da9579e933807e94bc5f",
                                            "name": "XR设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6047,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6052,
                                    "itemId": "fb002497436282810a5f90e4ba9ba86c",
                                    "name": "智能直播机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6053,
                                    "itemId": "68836efc365e9fef4e7ef02ee774ae88",
                                    "name": "智能飞行",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6054,
                                    "itemId": "ca710466cd040363139168bd6c18a67d",
                                    "name": "智能家庭",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6029,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6055,
                                            "itemId": "629fefc0feb10f7a974dd746c92ad223",
                                            "name": "智能家庭其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6054,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6056,
                                            "itemId": "735fd34000b9fcfd87db216d6fa727f6",
                                            "name": "智能闹钟",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6054,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6057,
                                            "itemId": "b4f8e87976872adae438ec07fd0a1d4d",
                                            "name": "智能按钮",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6054,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6058,
                                            "itemId": "89bb28bee1cdd8a3e38a67e1f593240f",
                                            "name": "AI语音助手",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6029,
                                            "thirdCatId": 6054,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "id": 6059,
                            "itemId": "91a9e00fbaad498f008998f68ddb08ea",
                            "name": "办公设备/耗材/相关服务",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6060,
                                    "itemId": "e6cbee049eebbda03c01508cf27992e7",
                                    "name": "投影机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6061,
                                    "itemId": "ac3ade5edd82b98041d195d577564eb0",
                                    "name": "点/验钞/收款机及配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6062,
                                            "itemId": "195013dd65bc08d64d946218d3cddb62",
                                            "name": "点餐码",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6063,
                                            "itemId": "f17d921408ccbf888db4dca4ac7934d5",
                                            "name": "收款提示器/播报器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6064,
                                            "itemId": "5a9d7de1dddd66b83b14dbd719d1ad5a",
                                            "name": "点钞机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6065,
                                            "itemId": "759e1fb96c5000037ca25aa607b5ae16",
                                            "name": "验钞机/笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6066,
                                            "itemId": "f18cfdf7fac200bbd184bd95d7442074",
                                            "name": "消费机/缴费机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6068,
                                            "itemId": "8e5612d35b224d3aaec91c0df00a7c55",
                                            "name": "收钱码/收款码/收款牌",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6069,
                                            "itemId": "3a7fa5a179876a993f9c4edbd5312d4a",
                                            "name": "收款机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6070,
                                            "itemId": "ed93ccd1bf986c8cc873a0f39a060f44",
                                            "name": "点钞机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6071,
                                            "itemId": "956ef215b1178a019b31ce706782416d",
                                            "name": "收款机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6061,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6072,
                                    "itemId": "2499e9ea0207f1738a2af45b16d4727d",
                                    "name": "碎纸机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6073,
                                    "itemId": "8716609df5bc871c4b4e08772bb297fa",
                                    "name": "高拍仪",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6086,
                                    "itemId": "b11d7d1e96beff891908b86b0fbd8e20",
                                    "name": "服务类",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6087,
                                            "itemId": "00b6eb37c001015d2d1899cc606f1c34",
                                            "name": "刻录盘个性化服务",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6086,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6088,
                                            "itemId": "51b87b7b087f52a14c8f41b235ce3b9d",
                                            "name": "商务礼品个性定制服务",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6086,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6089,
                                            "itemId": "0f48109e058b01778ff7265d4878cc59",
                                            "name": "服务类其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6086,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6098,
                                    "itemId": "5d9aa4828feee21e449ef2ebf4611357",
                                    "name": "墨粉硒鼓耗材类",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6099,
                                            "itemId": "39b02a993ce77cd075befa264921cff0",
                                            "name": "硒鼓/粉盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6100,
                                            "itemId": "143ed9b9c8ce3993864e0c262696a32f",
                                            "name": "墨盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6101,
                                            "itemId": "5e67b6ff9d9b85a8557e55f539161df0",
                                            "name": "墨粉硒鼓耗材类其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6102,
                                            "itemId": "fdceee6d65d464bd7c895fe9faf6c3ac",
                                            "name": "色带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6103,
                                            "itemId": "90e396fad15803ac8687bc1a5aa69ca0",
                                            "name": "墨水",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6104,
                                            "itemId": "67edeef8ee08bb5375f963402e55dc33",
                                            "name": "墨粉/碳粉",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6105,
                                            "itemId": "3cf63d50e237284c94c06f71c28c0b6a",
                                            "name": "3D打印机耗材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6106,
                                            "itemId": "6bb2a04e5749a3c6500b93f49690c677",
                                            "name": "碳带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6098,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6107,
                                    "itemId": "c6b789240bbcb79899a4a9ef680503ce",
                                    "name": "激光打印设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6108,
                                            "itemId": "eca0ad6f4dfafef79a1868f13ecb8af6",
                                            "name": "彩色激光多功能一体机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6107,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6109,
                                            "itemId": "b132aa451ce2189013b18398066530e5",
                                            "name": "激光打印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6107,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6110,
                                            "itemId": "faba5d255f981a829bb3929de72b65c9",
                                            "name": "黑白激光多功能一体机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6107,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6111,
                                            "itemId": "85ee1123940a676af10f80df2e00356a",
                                            "name": "激光打印设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6107,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6112,
                                    "itemId": "b1dd7298004f42fa0cf87d9a057449ce",
                                    "name": "办公用纸",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6113,
                                            "itemId": "61e6ed2492d41dfb92959639b078f02e",
                                            "name": "皮纹纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6114,
                                            "itemId": "53580d6bd9341bcd95cd138c887180c2",
                                            "name": "牛油纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6115,
                                            "itemId": "b64e6ed48e2c4e5d80ab6609b7e870e3",
                                            "name": "相片纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6116,
                                            "itemId": "94c26282d724810c758a3e793e59cf2d",
                                            "name": "瓦楞原纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6117,
                                            "itemId": "cbe4898f446895392b53da8f0e4da6d1",
                                            "name": "淋膜纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6118,
                                            "itemId": "20c575ed70d3c46cdcde9a17e1e31aba",
                                            "name": "鸡皮纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6119,
                                            "itemId": "fab48866e54b9771a67a2326aa163e60",
                                            "name": "复印纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6120,
                                            "itemId": "6433041887a2dcbe5d282505c7c742d6",
                                            "name": "转印纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6121,
                                            "itemId": "5bd129e4b216f1e5fb9f17b4cf1e577a",
                                            "name": "透明纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6122,
                                            "itemId": "4dfb24745bc66680547dc5a6b31be03b",
                                            "name": "玻璃纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6123,
                                            "itemId": "a1a4283cd4f19f69cae765ee5385e3b9",
                                            "name": "板纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6124,
                                            "itemId": "d592df0aed58b358449b8c402cddcd49",
                                            "name": "纸袋纸/杯纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6125,
                                            "itemId": "4307bb9f1e453b06bcd3c118a066d53e",
                                            "name": "牛皮纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6126,
                                            "itemId": "d9868ac0cb46f34f5747fb1d7b0adb26",
                                            "name": "电脑连打纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6127,
                                            "itemId": "4566dfebe7502acc1b0649fda0e42e54",
                                            "name": "纸类标签",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6128,
                                            "itemId": "ce1af3c0d6c4b0692fd0c59793f6de61",
                                            "name": "打印纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6129,
                                            "itemId": "b18b6a9b71e6553f799e042495d0f7c9",
                                            "name": "传真纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6130,
                                            "itemId": "a1217c254d5edbab7d11ea071b0ea0d9",
                                            "name": "标签打印纸/条码纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6131,
                                            "itemId": "b5aec0e6d6fbbb9a2c6294269112baf1",
                                            "name": "防油纸/防潮纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6132,
                                            "itemId": "eaae74ab5f934c3314775abfa206ff83",
                                            "name": "硅油纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6133,
                                            "itemId": "b5ecbc58d208f17dc0d6eb09d13bacc4",
                                            "name": "收银纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6134,
                                            "itemId": "5b7a1964139ee75269ca38dbe1073334",
                                            "name": "办公用纸其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6135,
                                            "itemId": "5c9dfed5f8adb193e5a7135a4ee7a59e",
                                            "name": "特种纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6136,
                                            "itemId": "1aa23d47b71483c66be4f3628fa2088c",
                                            "name": "商标纸/标签纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6137,
                                            "itemId": "a2d0bf5fad3adfc284690c368c581bf2",
                                            "name": "羊皮纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6138,
                                            "itemId": "fe784780c9d2799100589bfde683b9c5",
                                            "name": "石头纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6139,
                                            "itemId": "beb0861a47c9e6e65039cf98a8f15fb0",
                                            "name": "彩喷纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6140,
                                            "itemId": "dda5c297a1af31fd45e87f673603355f",
                                            "name": "卡纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6141,
                                            "itemId": "12162dba056dca6e34214f2f7f54a6fa",
                                            "name": "包装用纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6142,
                                            "itemId": "8161d178d1bf798494006d35b2d5ceb7",
                                            "name": "版纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6143,
                                            "itemId": "8e2f4fb409e8d71169a4aab3ad93fae2",
                                            "name": "铝箔纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6112,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6144,
                                    "itemId": "d6189f263558025b20729368bbd3139c",
                                    "name": "喷墨打印设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6145,
                                            "itemId": "98ba49778d31f2df0458f8bfcde08add",
                                            "name": "墨仓式打印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6144,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6146,
                                            "itemId": "4a258e4e6a0e81e21988ffdf92dfc290",
                                            "name": "喷墨打印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6144,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6147,
                                            "itemId": "3534550e5e6ad0d7f234ebc057a1970c",
                                            "name": "墨仓式多功能一体机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6144,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6148,
                                            "itemId": "a2173ec5385a2629e31a10a2fedb201b",
                                            "name": "喷墨多功能一体机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6144,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6149,
                                            "itemId": "e3b5d44467bdcb0f346a7640bcfcfb5c",
                                            "name": "喷墨打印设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6144,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6150,
                                    "itemId": "fdc278e5588cf03a497974b91e6b4a4f",
                                    "name": "扫描仪",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6151,
                                    "itemId": "1545ac96d119dbde2e9e7bf1b3d307a8",
                                    "name": "广告/印刷/绘图设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6152,
                                            "itemId": "07a24e75bdd7a09f9b0cdb309a0762e8",
                                            "name": "烫金机/压烫机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6153,
                                            "itemId": "ae2d8776ea21be96072d9c457df198b3",
                                            "name": "广告板材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6154,
                                            "itemId": "b5398b943a5ccda29dd26877e73e4d03",
                                            "name": "写真机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6155,
                                            "itemId": "d445a4c5f83fb72b56f355956c44c12c",
                                            "name": "晒图机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6156,
                                            "itemId": "d7c043747d81f8c6f8a123136ea8ee6c",
                                            "name": "丝印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6157,
                                            "itemId": "aa1fefee9a5b6e43e711bd045ca725fe",
                                            "name": "喷绘机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6158,
                                            "itemId": "4a83d9095e7dcc66576e97cb82214684",
                                            "name": "条幅机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6159,
                                            "itemId": "9ebde190c13de18f813e9ee6d71ecf6a",
                                            "name": "平板/UV打印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6160,
                                            "itemId": "1e84d5a457cc8bb6c50fbf2d5cf10039",
                                            "name": "物料基材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 6161,
                                                    "itemId": "bbe6b14e3cc34d3e2eb54572955d7d22",
                                                    "name": "刻字膜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6162,
                                                    "itemId": "ba692ea1919bb265e58174a170e19ba3",
                                                    "name": "冷裱膜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6163,
                                                    "itemId": "b6c78ad318c9b893f5dd0c954cb2c873",
                                                    "name": "反光膜",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6164,
                                                    "itemId": "22ed7bcb7856bfb9db3f695c120d633b",
                                                    "name": "物料基材其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6165,
                                                    "itemId": "aa0dcaba36c7bd3ce592a0d90a90bd52",
                                                    "name": "刀刮布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6166,
                                                    "itemId": "b8aee51233183cbf8bbfec19e571ad4f",
                                                    "name": "彩喷胶片",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6167,
                                                    "itemId": "8f5fb5683f785ed8bc74ce0e133e0704",
                                                    "name": "条幅布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6168,
                                                    "itemId": "aa360debc648181f6632946e8c7568ce",
                                                    "name": "网格布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6169,
                                                    "itemId": "d6784fad3854650a4a1d43ff710b85c5",
                                                    "name": "丝印台",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6170,
                                                    "itemId": "20642b04db639c8f565b3d370cd03dcf",
                                                    "name": "喷绘布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6171,
                                                    "itemId": "e45d3b31eb5f37d603c645360b65b88e",
                                                    "name": "灯片",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6172,
                                                    "itemId": "88944b7b2015908584c2db1cd3d9bfc4",
                                                    "name": "烫金纸/电化铝",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6173,
                                                    "itemId": "7d9e6b3ec12fe8ed4e568332da2ff8a0",
                                                    "name": "灯布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6174,
                                                    "itemId": "482c77896aa20ef3932719bdc487ae1c",
                                                    "name": "单面透/单透贴",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6175,
                                                    "itemId": "209d1e427a868f33acea74e1f6c120c1",
                                                    "name": "丝印版",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6176,
                                                    "itemId": "65a71734202f29e86c207a19bbe46a1d",
                                                    "name": "背胶",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6177,
                                                    "itemId": "ac65980d2d62347a8c3eb66bec937902",
                                                    "name": "写真布",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 6178,
                                                    "itemId": "100180ed7819d6c7b326f7400d42aba2",
                                                    "name": "金银胶片",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 6151,
                                                    "fourthCatId": 6160,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 6179,
                                            "itemId": "3e71349ae822c58e60222c5815729981",
                                            "name": "广告/印刷/绘图设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6151,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6180,
                                    "itemId": "9e64af3104421db41312fa14b40e87b8",
                                    "name": "磁盘刻录存储类",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6181,
                                            "itemId": "9dbc3bb9e39017ad7aeaa629f9574b91",
                                            "name": "软盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6180,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6182,
                                            "itemId": "fa599f7a34649691c3db754bedd32331",
                                            "name": "光盘拷贝机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6180,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6183,
                                            "itemId": "2b24c3fffe7fb18e13a13d4e9646d96d",
                                            "name": "磁盘刻录存储类其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6180,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6184,
                                            "itemId": "8bff0ef56bb022bd2e9945483b77e32e",
                                            "name": "刻录盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6180,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6185,
                                            "itemId": "d41b8e2a447ab651f6da7202892c32a8",
                                            "name": "光盘袋/光盘盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6180,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6186,
                                    "itemId": "6182e7c0c4ab0a996a27767d0eb1eea2",
                                    "name": "办公设备/耗材/相关服务其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6187,
                                    "itemId": "bc16530aa1146eace9eea93ba6e173eb",
                                    "name": "传真/通信设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6188,
                                            "itemId": "cb76132508fc884b54482a1cf00c6f8b",
                                            "name": "传真服务器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6189,
                                            "itemId": "55036627a89377de2f97ab03255f65cf",
                                            "name": "评价器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6190,
                                            "itemId": "406b71d92e92920fd9540514ab9ab925",
                                            "name": "电话交换机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6191,
                                            "itemId": "ae5ccbafdd9de2477f2fb262991c3ce4",
                                            "name": "无线呼叫器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6192,
                                            "itemId": "129dab513d9ef9e2ea3adb75e4b2b760",
                                            "name": "电话管理系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6193,
                                            "itemId": "e4d750344e1aace6ca53519ab25f700d",
                                            "name": "抢答器/答题器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6194,
                                            "itemId": "c9d1b425dbf2f156cb681f2ca44b58ec",
                                            "name": "传真机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6195,
                                            "itemId": "92c7478b80b63cd5e5ad5cb8f4452d8a",
                                            "name": "电子导游机/讲解器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6196,
                                            "itemId": "ae5877565cd4b4e9c0cbd521cabff4b7",
                                            "name": "传真/通信设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6197,
                                            "itemId": "d15abf5ebe194d955ada977c43cf961a",
                                            "name": "投币电话/磁卡电话",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6198,
                                            "itemId": "e037128ac340b6fd6bcf819226073445",
                                            "name": "电话录音设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6199,
                                            "itemId": "aeab82d1e6067e2e613435413adea683",
                                            "name": "寻呼设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6200,
                                            "itemId": "d2f31baf20ac96f8b0fdf58eabbcd87a",
                                            "name": "投票器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6201,
                                            "itemId": "beaab4d0d631d677270b59c90044c45f",
                                            "name": "办公电话",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6202,
                                            "itemId": "65af82319348a702637311ea1fbb4836",
                                            "name": "通信设备配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6203,
                                            "itemId": "4e699d1f061d79f41acb067866c1a1f2",
                                            "name": "传真机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6187,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6204,
                                    "itemId": "231d5ee0ac86c1cb9fba757f56131dc0",
                                    "name": "门禁考勤器材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6205,
                                            "itemId": "c5ee3d664641880e4a79ac48dfd26c1d",
                                            "name": "考勤门禁",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6206,
                                            "itemId": "40c75ba27421ed1220618c01eeecd0cf",
                                            "name": "证件阅读器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6207,
                                            "itemId": "c967fd258a9d8ddfa89ee96f40a5e378",
                                            "name": "生物识别采集器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6208,
                                            "itemId": "4c2832cf0eba6fdedbc8254d35451a19",
                                            "name": "门禁考勤器材其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6209,
                                            "itemId": "23b9cb02aeaacdbe1e4c344f58556733",
                                            "name": "考勤机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6210,
                                            "itemId": "7b06bdec0fd983c5cf653278b18bebb3",
                                            "name": "门禁控制器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6211,
                                            "itemId": "5c5d99038d07a9baf01601c23aaf99bb",
                                            "name": "访客机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6204,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6212,
                                    "itemId": "d01bdf0cf189574840311b05478ecda2",
                                    "name": "智慧零售设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6213,
                                            "itemId": "31264c27e926ea29739afba4c3470b0f",
                                            "name": "开放式/无人自助货架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6214,
                                            "itemId": "abde93d374129a3134b3ce15815d0382",
                                            "name": "自助查询终端",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6215,
                                            "itemId": "6e4492ddf46ed4f8d46833c2890330bc",
                                            "name": "智慧零售设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6216,
                                            "itemId": "d824470a90953d4aa02206c9b4ee6d77",
                                            "name": "自助点餐机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6217,
                                            "itemId": "45ed5479914ca5381d6eac886c14691b",
                                            "name": "自助结算台/智能结账机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6218,
                                            "itemId": "3e49e56d2beff3345842d0cc8cb9b280",
                                            "name": "数字餐牌",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6219,
                                            "itemId": "ca9ce682f6b0c81585367036c175ce4f",
                                            "name": "云货架/智能货架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6220,
                                            "itemId": "692dd6cca58dcfb5b9a8304d93cedb96",
                                            "name": "数字标牌/户外机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6221,
                                            "itemId": "45c0c062f292c8094ae9ce7950dd9d58",
                                            "name": "虚拟/智能试衣镜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6222,
                                            "itemId": "3783c8338479a87218d77d9111a52f6a",
                                            "name": "自助照片打印",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6223,
                                            "itemId": "6a6ddaedf7f201cd99d2c5d40d695f95",
                                            "name": "无人智能店",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6224,
                                            "itemId": "082791347d6b425f064c08f498b8513c",
                                            "name": "智能购物车",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6225,
                                            "itemId": "52464d0e2e21b8019b8d31d889855fb3",
                                            "name": "充磁/消磁器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6226,
                                            "itemId": "b89a3ca0f1f103570dba5024930665f5",
                                            "name": "智能存储柜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6227,
                                            "itemId": "32e043c9e1407469b532a4048fd28ab7",
                                            "name": "电子货架标签",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6228,
                                            "itemId": "0e4d6e3f02209e00a3f8b15229187a1d",
                                            "name": "智能书柜/共享图书机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6229,
                                            "itemId": "246ab4f52c1f5c6150455fb456010b26",
                                            "name": "传感器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6230,
                                            "itemId": "2d7d289a8c67af59335f7d95e0b420c7",
                                            "name": "WIFI探针",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6231,
                                            "itemId": "38f2a4f99192c1628f39b4fec4f37429",
                                            "name": "分拣机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6212,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6232,
                                    "itemId": "dc0ba611ab85b9167e871538c1485017",
                                    "name": "投影机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6233,
                                            "itemId": "b488dcfc766e70de2de390f27a2d6daf",
                                            "name": "投影机包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6234,
                                            "itemId": "2e9d6815b4eb9122b4a2406211c04e39",
                                            "name": "翻页激光笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6235,
                                            "itemId": "84923de3e2717f5e06a26ffd7c0be8a9",
                                            "name": "幕布",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6236,
                                            "itemId": "f591d149a38f70e67456f04fc9cf2acb",
                                            "name": "投影机吊架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6237,
                                            "itemId": "0bcd40630fdc31ddbac896028ff18a73",
                                            "name": "镜头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6238,
                                            "itemId": "efdd34c65200fb99f79dadb6568bd0bd",
                                            "name": "投影胶片",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6239,
                                            "itemId": "d6ddd2ad145e1f9e2d13a77189c914ed",
                                            "name": "投影机摇控器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6240,
                                            "itemId": "d32c9ca25085e0ecd8b914d0662f8aff",
                                            "name": "投影机支架(三角架)",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6241,
                                            "itemId": "6024fa055501f8aa391c5be55acc2c28",
                                            "name": "灯泡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6242,
                                            "itemId": "3d6b1415384ecf1303577b42216a6dfb",
                                            "name": "投影机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 19348,
                                            "itemId": "2a8a5bca26bdb737a67bd9d4c76b2f48",
                                            "name": "投影机DIY配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6232,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6256,
                                    "itemId": "af8ea18f7d13fc4c382309c314d8f38d",
                                    "name": "办公设备配件及相关服务",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6257,
                                    "itemId": "7b58af0807973db55e4c5f37f424f73a",
                                    "name": "复合复印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6258,
                                    "itemId": "cafe0396a399e6bdfe727b65dc2235ae",
                                    "name": "打印机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6259,
                                            "itemId": "bb7949bab8787582897dfdb32a96af47",
                                            "name": "定影上辊",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6260,
                                            "itemId": "19904f8d290d6e203e18765600d70dfa",
                                            "name": "上辊轴套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6261,
                                            "itemId": "7b9a763a65c4f0bf08bfbfece3a8c8a0",
                                            "name": "上导电辊",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6262,
                                            "itemId": "281e0ac82d35e7d8e820a727a533b7b7",
                                            "name": "定影膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6263,
                                            "itemId": "3f56f90180a59443a932503e88189a53",
                                            "name": "出纸杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6264,
                                            "itemId": "dfd8fcf28216afa057f0daed53587f3b",
                                            "name": "搓纸轮",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6265,
                                            "itemId": "16915074ba9e39326b4b57615113c576",
                                            "name": "激光器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6266,
                                            "itemId": "6de8ee118665bdfc2d8063078d4b7188",
                                            "name": "打印机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6267,
                                            "itemId": "319379090eb35e02c6400e1d8a0948a2",
                                            "name": "托纸板/进纸托盘",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6268,
                                            "itemId": "d93055a0f2884e7b96ad10b4fbea1a64",
                                            "name": "打印服务器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6269,
                                            "itemId": "60ba937dda5155b3381e316d701e1c7e",
                                            "name": "分页器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6270,
                                            "itemId": "208ffbab3ecbe773ceb99b3a87bbca1c",
                                            "name": "接口板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6271,
                                            "itemId": "75ea989d29fc4f7433de9a2186c5216b",
                                            "name": "电源板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6272,
                                            "itemId": "8ba11a538da3892b169d7a8536e2e4ae",
                                            "name": "计数芯片",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6273,
                                            "itemId": "4a6b19e369f3f75496e106b31abffec7",
                                            "name": "定影下辊",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6274,
                                            "itemId": "11f90a27ac6a873064af6410cf56c5fd",
                                            "name": "转印辊",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6275,
                                            "itemId": "27ff174f7a7c4cf980ea2847f06c7f88",
                                            "name": "下辊轴套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6276,
                                            "itemId": "6194ff85d40e6c4ac663684e6e55b566",
                                            "name": "摆轮",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6277,
                                            "itemId": "1a88507b99582b396738fb35c85075ad",
                                            "name": "喷头/打印头",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6278,
                                            "itemId": "c142e263ab2cfc33d1a22b05f42001db",
                                            "name": "照片冲印设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6279,
                                            "itemId": "faef5e8644413e44d0380a9de6ce7fe4",
                                            "name": "感光鼓芯",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6281,
                                            "itemId": "31c5a6845c7e74ea968d466d92e5c968",
                                            "name": "3D打印机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6282,
                                            "itemId": "11e7acfcb9f6a28fc75d426d01351445",
                                            "name": "多功能一体机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6283,
                                            "itemId": "34f360d5d99fb001b7dfb92297fb5c29",
                                            "name": "定影灯管",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6285,
                                            "itemId": "c9f61a7e6747ba134437f593fefed2e5",
                                            "name": "收纸器/卷纸器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6286,
                                            "itemId": "0accd90122e9f849b1e6448e03ab3260",
                                            "name": "定影齿轮",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6287,
                                            "itemId": "e120caa39f5504c4bb3118d50709709b",
                                            "name": "连续供墨系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 19359,
                                            "itemId": "1c55bcc524ef08ac3788078f341ef5f5",
                                            "name": "打印机电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 19361,
                                            "itemId": "13c0faf1f2b566fb449a4d4a7dde0806",
                                            "name": "打印机主板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6258,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6288,
                                    "itemId": "efbd7d6822206475ecfd77bf7dac7c2f",
                                    "name": "会议音频视频",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6289,
                                            "itemId": "b7995999c31a406fa32682b08d63ab7e",
                                            "name": "MCU/会议服务器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6290,
                                            "itemId": "7dc0310a793fa44b8e6c7f58a66507c1",
                                            "name": "电子白板/会议教学平板一体机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6291,
                                            "itemId": "0348546a4eb31362cf42c5e8529ded55",
                                            "name": "会议电话产品",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6292,
                                            "itemId": "1796fafd9356cb05aec52510c49e4e17",
                                            "name": "会议音频视频其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6293,
                                            "itemId": "a38c43e29e910329eec74221e8f610a9",
                                            "name": "会议麦克风",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6294,
                                            "itemId": "5f133922fefbc20a539ac06aa578186e",
                                            "name": "视频展台",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6288,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6295,
                                    "itemId": "13d990c8e82127555805977835830d1e",
                                    "name": "电子办公/学习设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6296,
                                            "itemId": "42cc4f0717823cc816992295c06e3d9e",
                                            "name": "学习手写板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6297,
                                            "itemId": "fac279d49a7ae6bfb83fffa98863153b",
                                            "name": "智能墨水屏设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6298,
                                            "itemId": "83e34b72011ae3fca21973a45f1c64dc",
                                            "name": "智能记事本/手写本/办公本",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6299,
                                            "itemId": "dd810b5f046cb19f2ba18ceac87e10c8",
                                            "name": "电子辞典",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6300,
                                            "itemId": "b8109b7da966510a51420e9a597d3ade",
                                            "name": "电子办公/学习设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6301,
                                            "itemId": "fa7a3382779a0ff7ba545a8c89d5b721",
                                            "name": "翻译笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6302,
                                            "itemId": "0d0871ca6ae73a49f55b7a64157e79b5",
                                            "name": "电子阅览器/电纸书",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6295,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6303,
                                    "itemId": "97c7007966bdce8017c5dc90793f8213",
                                    "name": "条码扫描/采集器材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6304,
                                            "itemId": "6b6d747a8e4c3ba3c108b2385bc4cc08",
                                            "name": "条码扫描枪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6305,
                                            "itemId": "7bbbcc6c34cfcbfbea0d90fd25873350",
                                            "name": "条码检测仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6306,
                                            "itemId": "20036acbcc6b51d0898b2d42b276e168",
                                            "name": "条码扫描器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6307,
                                            "itemId": "095a9833133724966b4ec6b72444e7ba",
                                            "name": "条码扫描枪配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6308,
                                            "itemId": "4f34aee45a27e7083a8521a180af6806",
                                            "name": "数据采集器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6310,
                                            "itemId": "bd5c7d9d7abfde43f640ccef070bc9d2",
                                            "name": "扫码支付盒子",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6311,
                                            "itemId": "76b2eeb509b495e9a23b83e2fa499c24",
                                            "name": "IC卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6312,
                                            "itemId": "e9e0f865c839039d3759f3e84eba21f8",
                                            "name": "条码扫描/采集器材其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6313,
                                            "itemId": "27fb883952d1f7e99d2afbb0976aef32",
                                            "name": "磁卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 19384,
                                            "itemId": "3ee8f8e30852bdfd2e7a1418ab915618",
                                            "name": "条码扫描读卡器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6303,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6314,
                                    "itemId": "b8ff27bc98b2375f41a9c7722ca50524",
                                    "name": "绳索/扎带/办公线材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6315,
                                            "itemId": "edc791e0094ccd81ae49d30138c1a313",
                                            "name": "办公线材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6314,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6316,
                                            "itemId": "9874679a86b013d28bcb05006573645c",
                                            "name": "结束带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6314,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6317,
                                            "itemId": "4c1762c729b9f6c0f4e49b7c38beb085",
                                            "name": "束线带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6314,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6318,
                                            "itemId": "22bfa787634bc9d4a78cf02b5120f812",
                                            "name": "绳索/扎带/办公线材其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6314,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6319,
                                            "itemId": "a00bcb3a37933c7a5f8616d336633bf9",
                                            "name": "行李绳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6314,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6331,
                                    "itemId": "e931b1e3b6d61b7c14e86f5ab7a45621",
                                    "name": "保管箱",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6332,
                                    "itemId": "c73f06efb638f129b508ea16e3f20174",
                                    "name": "3D打印设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6333,
                                            "itemId": "7d41f78c2d4845e6f32dc31166a1ea0e",
                                            "name": "3D打印机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6332,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6334,
                                            "itemId": "02987246edb8e4eeac5b89be81fd7cd3",
                                            "name": "3D打印设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6332,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6335,
                                            "itemId": "9830408ef4f55698758dba3ddf8f4f3f",
                                            "name": "3D打印服务",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6332,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6336,
                                            "itemId": "942b7b898ad51b141d0bbed2f87c2494",
                                            "name": "3D打印笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6332,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6337,
                                    "itemId": "bc16b0df8beee97f4f62fbf492590f99",
                                    "name": "包装设备/标牌及耗材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6338,
                                            "itemId": "82d5289e2158e52063de038c7e3ba527",
                                            "name": "塑封机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6339,
                                            "itemId": "2d7674ff7790df51de8c7c659eded1ba",
                                            "name": "气垫机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6340,
                                            "itemId": "9b187d40e16a81e4a355e7abb3a9891b",
                                            "name": "装订机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6341,
                                            "itemId": "0686df028760e1cf4652ac9d11b469b5",
                                            "name": "收缩机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6342,
                                            "itemId": "a51b439c5648d393cefb77f7395504bf",
                                            "name": "打码机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6343,
                                            "itemId": "df5671f03380a79ee8f29a741b8afbef",
                                            "name": "铭牌",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6344,
                                            "itemId": "3f8f4584b8f41471bf34733131586218",
                                            "name": "装订机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6345,
                                            "itemId": "fc5a1a19bd058ed1af9c78aff10389c2",
                                            "name": "牛皮信封",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6346,
                                            "itemId": "5f743109318cd0c457f9a9c1d77e4bf3",
                                            "name": "覆膜机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6347,
                                            "itemId": "5672d8e72c73acf32bed18c90cd72209",
                                            "name": "真空机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6349,
                                            "itemId": "d22ba060239a0af39e167d68c80f70d3",
                                            "name": "包装机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6350,
                                            "itemId": "b82d949ea263177dbcc51d3ef6ab3d81",
                                            "name": "捆扎机/打包机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6351,
                                            "itemId": "ec296d6037561e8cb1c160395618ec76",
                                            "name": "灌装机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6352,
                                            "itemId": "fbe1b1bdf3462953bfc59f35f71e4397",
                                            "name": "包装设备/标牌及耗材其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6353,
                                            "itemId": "2e9984c8bd03bc412ed59d362d35f337",
                                            "name": "折纸机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6354,
                                            "itemId": "be0e1cfae09446750f2c304953c162ef",
                                            "name": "锁盖机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6355,
                                            "itemId": "bb65ab5fc21b326b51bd297cf28683f9",
                                            "name": "塑封膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6357,
                                            "itemId": "4f42b14f00e6036dd771c1975c8d1421",
                                            "name": "塑封机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6358,
                                            "itemId": "177f45e8efe3744e3d94b196c295fe2a",
                                            "name": "开箱机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6359,
                                            "itemId": "9c446dbc6671f0b796fb8b397ea8f730",
                                            "name": "装订耗材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6360,
                                            "itemId": "9cd21ccfe277c2c5dde9096de7b4399b",
                                            "name": "切卡机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6361,
                                            "itemId": "1a11294a04c80dd284c1d9434bdb9de4",
                                            "name": "胶装机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 19391,
                                            "itemId": "e8f12bbb88179c794c15822d0f634346",
                                            "name": "包装封口机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6337,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6362,
                                    "itemId": "b7ef5f903bc1334c8716ccd3879f0a7d",
                                    "name": "保险箱",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6363,
                                    "itemId": "7dc3863e4598bf32fa63acc2c0be7c25",
                                    "name": "胶带",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6364,
                                            "itemId": "7a4a5d96f166597f47c00e3ed1c621a4",
                                            "name": "海绵胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6365,
                                            "itemId": "77b5384139c068111efc72e0ce497d75",
                                            "name": "pe胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6366,
                                            "itemId": "e2131c8c3679ce1fdfb865dbb854c6a7",
                                            "name": "布胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6367,
                                            "itemId": "3de03ec1a41d0f59b9df9ae4af016a1b",
                                            "name": "工业胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6368,
                                            "itemId": "e505eeec817f0b710f38b38a034bf107",
                                            "name": "pet胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6369,
                                            "itemId": "a55ccb816d233d685cd47b1f759c99b0",
                                            "name": "bopp胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6370,
                                            "itemId": "e06bdf47af216d02e1a8dbf7d2d0e505",
                                            "name": "玻璃布胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6371,
                                            "itemId": "9fef2dd0c8ab208e92388b022347b247",
                                            "name": "铝箔胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6372,
                                            "itemId": "bba5b3059f315525102c179466dda8f6",
                                            "name": "牛皮纸胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6373,
                                            "itemId": "fa09851d8e5a9abab7f3bd2d3c23ab07",
                                            "name": "特氟龙胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6374,
                                            "itemId": "94361ac1e7e4928d512ebc0dd68efbfa",
                                            "name": "玛拉胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6375,
                                            "itemId": "2051faa89edc63c77707f76105346076",
                                            "name": "沥青胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6377,
                                            "itemId": "25be39dccb19765f700f221e406bfcd5",
                                            "name": "双面胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6378,
                                            "itemId": "2fa450a582a15a8e6ad4f6318e02ba12",
                                            "name": "胶带其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6379,
                                            "itemId": "f512de479dd3a626583aa281f5282832",
                                            "name": "pvc胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6380,
                                            "itemId": "5e0da4b3281c1a3dfb0c0d443d94dd07",
                                            "name": "纤维胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6381,
                                            "itemId": "ecc4290c836f4146f4673762c8f808ef",
                                            "name": "美纹纸胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6382,
                                            "itemId": "f2e92492165d962ce74353f7c55dae58",
                                            "name": "opp胶带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 6363,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 16129,
                                    "itemId": "a49e0fe749ec292024b7c2fb2a6a4fc6",
                                    "name": "办公设备胶带",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16140,
                                    "itemId": "a3121ccb89dac869ff56a5747c44eef3",
                                    "name": "餐饮/外卖打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16143,
                                    "itemId": "920c604a753fa2c239f464a040c91dd6",
                                    "name": "办公设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 16144,
                                            "itemId": "98403bdf819589b801a14b0717955256",
                                            "name": "手提金库",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16145,
                                            "itemId": "14439ed45fdd37a5915117e6bb0cd156",
                                            "name": "碳粉吸尘器/微尘清洁器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16146,
                                            "itemId": "4a8819b557fa06dda67ec00be4f55bf2",
                                            "name": "光标阅卷机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16147,
                                            "itemId": "48cdf2ea3513d713cb9773a83da04cfb",
                                            "name": "冷裱机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16148,
                                            "itemId": "843a6f4bfc6854b7e355341f4938ce7a",
                                            "name": "绘图仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16149,
                                            "itemId": "2f96d97bf9439bbf6ac2de3d1038b663",
                                            "name": "幻灯机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16150,
                                            "itemId": "537ee4ceb591fae2054d2917f964fe88",
                                            "name": "办公设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16151,
                                            "itemId": "62919cc7a68c71fb08666eb73d2da6ef",
                                            "name": "印章箱",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16152,
                                            "itemId": "79841f1f5fc3c755f3fba2be70ca03e9",
                                            "name": "切纸机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16153,
                                            "itemId": "f46283b7861d321d76fcf7bcc50495ec",
                                            "name": "打字机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16154,
                                            "itemId": "e20081d7459716a25086c2dcb07d4862",
                                            "name": "销毁设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16155,
                                            "itemId": "93f1b68dec45209269b382d682ee6b45",
                                            "name": "刻字机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16143,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 16206,
                                    "itemId": "8ada4c0444bf3f2d8381eb071f3ccd1d",
                                    "name": "快递打单机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16213,
                                    "itemId": "ac264409c63aea27070519de12f1d009",
                                    "name": "证卡打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16214,
                                    "itemId": "2cd3da9e7564ed3b1c19c5ed98f970b7",
                                    "name": "一体化速印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16269,
                                    "itemId": "8f2ec2cb46254fc31b76858676b13034",
                                    "name": "办公设备胶卷",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16270,
                                    "itemId": "462fd7312bab591e55b8b8ec3dd94c7f",
                                    "name": "针式票据打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16271,
                                    "itemId": "94a4bbdbccfd080983e81bbea662ec02",
                                    "name": "学习/错题打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16280,
                                    "itemId": "470b8ad204211b402a09eb506f4b9e66",
                                    "name": "照片打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16281,
                                    "itemId": "14d71777f69b0d58225790a3643206d0",
                                    "name": "家用标签机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16282,
                                    "itemId": "eea9095ba0b51d42d58ae3d2ce26991b",
                                    "name": "办公设备配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 16283,
                                            "itemId": "ef592c1dd807eaab75221fcc9b28dec7",
                                            "name": "扫描仪配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16284,
                                            "itemId": "d51298a4b5ecfa71957c8b8e2bbf1b3f",
                                            "name": "打字机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16285,
                                            "itemId": "d73e5e0a0126efa81c0a3d8a0515e2b9",
                                            "name": "刻字机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16286,
                                            "itemId": "703322754bcd9647b8d43110219f3794",
                                            "name": "复印机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16287,
                                            "itemId": "b5baa5b6d665a2567d718c0184d3f273",
                                            "name": "幻灯机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16288,
                                            "itemId": "b382e810b1b6bb1cdddc322729d63b8a",
                                            "name": "标签机配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16289,
                                            "itemId": "220fca7f198a78176f5a14fe83146c77",
                                            "name": "办公设备配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16282,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 16322,
                                    "itemId": "41b60fce76430cd50288bc7d53a29d8f",
                                    "name": "宽幅打印机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16323,
                                    "itemId": "17aaccdd484184fc60bfdf80a6aa9470",
                                    "name": "商业标签/线号机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 16394,
                                    "itemId": "4538806995a3e4c61c28b0b1bbec2f80",
                                    "name": "办公设备耗材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6059,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 16395,
                                            "itemId": "59787dec1763fb38e3a592083e3bca36",
                                            "name": "油墨",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16394,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000,
                                            "categoryVos": [
                                                {
                                                    "id": 16396,
                                                    "itemId": "40bf94eefbc813a62c6a608efcad668e",
                                                    "name": "印纸油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16397,
                                                    "itemId": "7b4c59275902389d85049d67a4d92cc7",
                                                    "name": "UV油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16398,
                                                    "itemId": "0515db3143803ede193230550fb2da2b",
                                                    "name": "塑料油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16399,
                                                    "itemId": "21066ae65171a91628456cb9c9f383c3",
                                                    "name": "印铁油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16400,
                                                    "itemId": "fe04fbb924c4a03be62de3d4f3481e35",
                                                    "name": "橡胶油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16401,
                                                    "itemId": "78b7d6f9d55b1984a75b7e66c973b78c",
                                                    "name": "玻璃油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16402,
                                                    "itemId": "3b35aa76227fcdd37594d6b65e2e7232",
                                                    "name": "陶瓷油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16403,
                                                    "itemId": "ba0d9f28018cc5b5d8313745138dba0c",
                                                    "name": "防伪油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16404,
                                                    "itemId": "5f08997db62641179b10e356706716e4",
                                                    "name": "油墨其他",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                },
                                                {
                                                    "id": 16405,
                                                    "itemId": "b589f85480be51eb8891931e4f7de69d",
                                                    "name": "印布油墨",
                                                    "level": 5,
                                                    "firstCatId": 5626,
                                                    "secondCatId": 6059,
                                                    "thirdCatId": 16394,
                                                    "fourthCatId": 16395,
                                                    "createTimestamp": 1650384000000,
                                                    "updateTimestamp": 1650384000000
                                                }
                                            ]
                                        },
                                        {
                                            "id": 16406,
                                            "itemId": "56cefc95a2dde0167c526289cb04cfec",
                                            "name": "办公设备耗材其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6059,
                                            "thirdCatId": 16394,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "id": 6383,
                            "itemId": "7f0af09c98608fe14290664b5cdeecbe",
                            "name": "平板电脑",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000
                        },
                        {
                            "id": 6384,
                            "itemId": "7d85d8e5cb23581aeeed941b43d19706",
                            "name": "电玩/配件/游戏/攻略",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6385,
                                    "itemId": "752ffc87d354a99117c1de0095ffcd32",
                                    "name": "任天堂NGC/FC/N64/SFC 专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6386,
                                            "itemId": "a41fe822a765632d1f71b578319af4d4",
                                            "name": "SD卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6387,
                                            "itemId": "3d52a51ae163716d2d4cd5c87f9e6d95",
                                            "name": "记忆卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6388,
                                            "itemId": "3f5d64b43efe2f0c6c79f18896d0a616",
                                            "name": "任天堂电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6389,
                                            "itemId": "4a656182502a9b98e49e1abeb74c9ad6",
                                            "name": "任天堂手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6390,
                                            "itemId": "d85edcd6aa0b4f426b2bed7dc52eeb52",
                                            "name": "任天堂AV线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6391,
                                            "itemId": "2ff4a5968c184a8aba6b207897d49567",
                                            "name": "任天堂NGC/FC/N64/SFC 专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6385,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6392,
                                    "itemId": "03402d6ab87aa33d0f525cb72bd63ad3",
                                    "name": "XBOX专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6393,
                                            "itemId": "b29f085411c239ae406123ceedb0541d",
                                            "name": "XBOX手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6394,
                                            "itemId": "d33440cd62d920140cc20e4eb9ce705b",
                                            "name": "XBOX专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6395,
                                            "itemId": "3ac3e2d99e76c6d8b7bada4892dc6521",
                                            "name": "XBOX线材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6396,
                                            "itemId": "e33ffcabd421f7db4f4d6331b4f6483e",
                                            "name": "Kinect体感器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6397,
                                            "itemId": "c1d7644c9ef8fd8950eb83aa04004fb0",
                                            "name": "XBOX硬盘盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6398,
                                            "itemId": "5fd42fb4d5b8d41a5de06fac1cc8ea28",
                                            "name": "XBOX电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6392,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6399,
                                    "itemId": "d424727eeea9ea8f993e0dacba30594b",
                                    "name": "游戏软件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6400,
                                            "itemId": "2024c96de0b1e20b82a571e1fc2423d7",
                                            "name": "任天堂 SWITCH游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6401,
                                            "itemId": "10e309ae39e364602b1943b158f12b60",
                                            "name": "PS游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6402,
                                            "itemId": "a1ec534d4577435de5d83fa65f33f607",
                                            "name": "PSP/PSV游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6403,
                                            "itemId": "40a857052be34be4025644793e214df3",
                                            "name": "游戏软件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6404,
                                            "itemId": "99ac3fff6320c65e46d1f686a20dd685",
                                            "name": "XBOX游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6405,
                                            "itemId": "31b84b95a7b410eba695f30ac04aa5ed",
                                            "name": "WII/WIIU游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6406,
                                            "itemId": "04bfa5608d991e853d32a2dd559c1e13",
                                            "name": "PC游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6407,
                                            "itemId": "62759ac34ed825d72c703535311c7152",
                                            "name": "DS/3DS游戏软件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6399,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6408,
                                    "itemId": "abb22e65ff6055be8ba9ae331932a5d4",
                                    "name": "游戏软件平台",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6409,
                                            "itemId": "069777322e07c4ef9b5e0a2982f039fc",
                                            "name": "任天堂 eshop",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6410,
                                            "itemId": "1a281bfdd225b56db236beda9959e3d5",
                                            "name": "START云游戏",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6411,
                                            "itemId": "ad55edf71d4f4e4fb9543516806726ac",
                                            "name": "Xbox store",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6412,
                                            "itemId": "1d0cc913ccfa044127a9b7de8561ded5",
                                            "name": "ORIGIN",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6413,
                                            "itemId": "69a1173041b6f632a844daa05034e566",
                                            "name": "游戏软件平台其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6414,
                                            "itemId": "81de415cb6514ab2640c137e3f646a8a",
                                            "name": "WeGame",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6415,
                                            "itemId": "1d0eeb84bf390857fcdd6e33b0840dbe",
                                            "name": "STEAM",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6416,
                                            "itemId": "ddff0d45bc640094cfb5b8c2e296fce6",
                                            "name": "UPLAY",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6417,
                                            "itemId": "ce1ad48146f39af06d581fbb7a787308",
                                            "name": "PSN",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6408,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6418,
                                    "itemId": "0e722603c6b8c5b0f5bc61fa209e2c82",
                                    "name": "游戏手柄",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6419,
                                    "itemId": "175fa951e4312c5af3c83077f2a90661",
                                    "name": "PSV专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6420,
                                            "itemId": "78040df9b50ee38589746d84af92b7de",
                                            "name": "PSV电池",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6421,
                                            "itemId": "7061d238682f44ef85f039b2c7e5329f",
                                            "name": "PSV彩贴/贴纸",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6422,
                                            "itemId": "96854fd73fec51ee05ab0c6be43f85a5",
                                            "name": "PSV专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6423,
                                            "itemId": "22c5593ecf0ba88f8843927e0f5a5665",
                                            "name": "PSV充电器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6424,
                                            "itemId": "bf7d8b9b25f064a396c14514768d8ff8",
                                            "name": "PSV专用耳机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6425,
                                            "itemId": "09a8a0c67a929dd45d9ac5a492e33063",
                                            "name": "PSV屏幕贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6426,
                                            "itemId": "d7f7cc41f7fa6e400d76eb3c69a6b76d",
                                            "name": "PSV保护套/外壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6419,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6427,
                                    "itemId": "f32b873782d07d47e20ed3f08c00f99a",
                                    "name": "电玩/配件/游戏/攻略其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6428,
                                    "itemId": "aafe5cc8072676851f1728feb61d8b63",
                                    "name": "方向盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6429,
                                    "itemId": "13b04af5e8597d49a6fdc2e968089e97",
                                    "name": "PSP专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6430,
                                            "itemId": "b5186bd1f40426c58005b0978850e627",
                                            "name": "水晶盒/铁壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6429,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6431,
                                            "itemId": "10176d565b7b795205f79767de5ec221",
                                            "name": "专用布袋/软套/硅胶套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6429,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6432,
                                            "itemId": "5771bddd77609a469fb4e537d33aa3e5",
                                            "name": "专用耳机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6429,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6434,
                                            "itemId": "63985ca929af1b130d9598d31c124e19",
                                            "name": "PSP专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6429,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16451,
                                            "itemId": "85c7595bdb49822be45015088ae49b60",
                                            "name": "PSP专用各类线材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6429,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6435,
                                    "itemId": "6b10a49d810119018507cd234848b148",
                                    "name": "世嘉 DC/MD/SS/SEGA 专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6436,
                                            "itemId": "dd2f80e484564bb2f625aee81fe983c7",
                                            "name": "世嘉手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6437,
                                            "itemId": "a21b14d6ede809e03e3b23c84a77db21",
                                            "name": "震动包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6438,
                                            "itemId": "0f6bc2354c3cbc6a527a50e58133a943",
                                            "name": "世嘉记忆卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6439,
                                            "itemId": "b19bcf337aec92ee52e361077072fecc",
                                            "name": "AV线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6440,
                                            "itemId": "ddf6b2adc9d1d01898eb414e5d304857",
                                            "name": "世嘉 DC/MD/SS/SEGA 专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6441,
                                            "itemId": "d69260f46f9fffed95a9675f1b581fe3",
                                            "name": "世嘉电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6435,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6442,
                                    "itemId": "0786df7153abbcb267536669a3f45705",
                                    "name": "DS/3DS专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6444,
                                            "itemId": "cd207be39212389340431697147ee797",
                                            "name": "DS/3DS专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6442,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6445,
                                            "itemId": "f7f3a54ea153fb54563c97fea04d8c2f",
                                            "name": "触笔",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6442,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16455,
                                            "itemId": "b650f5f0feef67fbc7ee31a8519ab9ff",
                                            "name": "DS/3DS专用电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6442,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6446,
                                    "itemId": "477e72b50a6468805132c6a49808bae9",
                                    "name": "游戏跳舞毯",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6447,
                                    "itemId": "1d79071b01ccb15c1d36836975e24005",
                                    "name": "手柄硅胶套",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6448,
                                    "itemId": "f86b423dad3e75a9ef217d3bf872bb6a",
                                    "name": "任天堂 SWITCH配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6449,
                                            "itemId": "0293e851cd90707918ae68b45fb01e5f",
                                            "name": "switch钢化膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6450,
                                            "itemId": "31f45efc174818682e54824079d22005",
                                            "name": "switch主机贴膜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6451,
                                            "itemId": "4fc4f0bfc37778049788dc81861f88de",
                                            "name": "Amiibo",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6452,
                                            "itemId": "4f4d248ef9d249a4675ccababd1452cb",
                                            "name": "任天堂 SWITCH配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6453,
                                            "itemId": "082eb7c69b18b1f93d202282fe9969b8",
                                            "name": "主机支架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6454,
                                            "itemId": "ec986fd760efb271e36c6352341ae9ca",
                                            "name": "switch手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6455,
                                            "itemId": "297a64e3152181e05912a3da426c7c11",
                                            "name": "switch摇杆帽",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6456,
                                            "itemId": "f25a6810eff0146ae95eca3512de6573",
                                            "name": "switch保护壳套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6448,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6457,
                                    "itemId": "f4fec69c487648b850f8d84858de3558",
                                    "name": "游戏掌机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6458,
                                    "itemId": "cb721852f438f4fa5de9f1b6b7738492",
                                    "name": "摇杆",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6459,
                                    "itemId": "ad280aa71cd31028f8a2ec75fb347f70",
                                    "name": "手柄充电器",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6460,
                                    "itemId": "047665a9fa666565a6bd884a2fb595d4",
                                    "name": "家用游戏机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6461,
                                    "itemId": "160bc4e7e2902a71347da07f187cd40e",
                                    "name": "任天堂掌机配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6462,
                                            "itemId": "abadfb37372d159dd24e42c1bb928de0",
                                            "name": "外壳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6461,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6463,
                                            "itemId": "4fd6eeacd58df89fdf235997d0f31127",
                                            "name": "按键",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6461,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6464,
                                            "itemId": "b8389ad61836be213e8eb5fb279dce57",
                                            "name": "任天堂掌机配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6461,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6465,
                                            "itemId": "0d30d8a341d4a275ba6f70a510dc1aac",
                                            "name": "屏幕",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6461,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6466,
                                    "itemId": "1e5005c3aef44f78481b81067cd6b77e",
                                    "name": "WII/WIIU专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6467,
                                            "itemId": "b0b603fa1c11882377cd2a55bbad3941",
                                            "name": "光剑",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6468,
                                            "itemId": "151ea51f4bdc9ca31066038b5874a3f1",
                                            "name": "WII用吉他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6469,
                                            "itemId": "291380e0362fe68688747ec10e67edfa",
                                            "name": "飞行摇杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6470,
                                            "itemId": "831caea4bb306cc755d0fd390b5f5428",
                                            "name": "乒乓球拍",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6471,
                                            "itemId": "a01713afacb634535a7deb646d4f2d9d",
                                            "name": "WII高尔夫球杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6472,
                                            "itemId": "782212939a919fa0cea22ce24402e50a",
                                            "name": "音乐套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6473,
                                            "itemId": "ee31a03d0c4ed53ea4eb97eaff942f0d",
                                            "name": "WII运动套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6474,
                                            "itemId": "de3932ffa1d69c734875f0c5fdcdabbb",
                                            "name": "WII/WIIU专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6476,
                                            "itemId": "ed42e8cddbbee7c0eef1668efdc8bb34",
                                            "name": "加速器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6477,
                                            "itemId": "b6e38a7f3d1492ebaee8c830c905c54b",
                                            "name": "格斗摇杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6478,
                                            "itemId": "26053ba600ebf1cc39b30c1c77785fe7",
                                            "name": "FIT平衡板",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6479,
                                            "itemId": "0194d0124d085daaddd16798f9e47a97",
                                            "name": "左手手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6480,
                                            "itemId": "2600c874defc123e0d56dc8be0d4af7f",
                                            "name": "WII专用记忆卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6481,
                                            "itemId": "3d5b97813eaa415e6f4a7ed554e1041b",
                                            "name": "鼓",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6482,
                                            "itemId": "382f08660cafca4327642ae7456a06cc",
                                            "name": "右手手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6483,
                                            "itemId": "1d633593963f8c1ae6c4b0407003cd9a",
                                            "name": "游戏枪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6484,
                                            "itemId": "774120565dbf4485c9c6c28a4f2db5e1",
                                            "name": "桌球杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6485,
                                            "itemId": "785f130395eec140e6b90d35812fe5f4",
                                            "name": "WII瑜伽垫/健身毯",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6486,
                                            "itemId": "629b10fb3b2112327e2eb43465930782",
                                            "name": "曲棍球杆",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16463,
                                            "itemId": "31b70bee4814eedc5142d283f3155949",
                                            "name": "WII/WIIU专用拳击手套",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16464,
                                            "itemId": "89abc518a5cb8d98fe1f75eff69e1796",
                                            "name": "WII/WIIU专用摩托艇",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6466,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6488,
                                    "itemId": "cde9109edfa4601e6958185b611521e0",
                                    "name": "PS主机专用配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6384,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6489,
                                            "itemId": "d52ffd9fadb30539e17bf3588d395961",
                                            "name": "PS主机专用配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6490,
                                            "itemId": "aaca7dca6446743aa589461a97e9ebdb",
                                            "name": "主机包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6491,
                                            "itemId": "d6563d975b952a32aa97d8230fd8d018",
                                            "name": "座充",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6492,
                                            "itemId": "8fe74fefaa306a8ad6b664e407e187e4",
                                            "name": "手柄",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6493,
                                            "itemId": "627946700578e58728eb4667cca0eef9",
                                            "name": "吉他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6494,
                                            "itemId": "0445a34fed82805f16ba6ff416ca8aaf",
                                            "name": "PS电源",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6496,
                                            "itemId": "82d47b9e58cb3da0d92f4695c270a338",
                                            "name": "风扇",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16458,
                                            "itemId": "9b1ae634e7369d81d64e12eab6933a80",
                                            "name": "PS主机专用支架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16460,
                                            "itemId": "8c0abd0c0afc4f8857063c0b32c71cf8",
                                            "name": "PS主机专用各类线材",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6384,
                                            "thirdCatId": 6488,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                }
                            ]
                        },
                        {
                            "id": 6498,
                            "itemId": "8fc6e4a78d7c209b9a9977ab364f9678",
                            "name": "品牌台机/品牌一体机/服务器",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6499,
                                    "itemId": "70ac824c29943b3f30bbd5e7294aa8ff",
                                    "name": "服务器/Server",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6500,
                                    "itemId": "e3097ec6b2d37e21f93a19c65ef287d3",
                                    "name": "工作站",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6501,
                                    "itemId": "90cc00252310993533be6c782b37b081",
                                    "name": "一体机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6502,
                                    "itemId": "80048599c9dae680a29f8fab5e9bfb64",
                                    "name": "台式整机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6503,
                                    "itemId": "2aa7fa41df81560ec1e3f1d580a7d46e",
                                    "name": "品牌台机/品牌一体机/服务器其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6504,
                                    "itemId": "05379dc6eaec86267ce635b34ffbfd2c",
                                    "name": "智慧白板",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6498,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 6505,
                            "itemId": "be9739c9350217f98baa74fff93a8f6b",
                            "name": "闪存卡/U盘/存储/移动硬盘",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6506,
                                    "itemId": "36a445043c3bcb8575047bbef69e3f04",
                                    "name": "私有云存储设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6507,
                                    "itemId": "5aa524319c23d5c3dd3015bebbcc388d",
                                    "name": "手机U盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6508,
                                    "itemId": "132f14e61ee34af6efda63805a10b15c",
                                    "name": "移动硬盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6509,
                                    "itemId": "6de1f2f68d06fd3cb6da2c6ec3f1bd64",
                                    "name": "普通U盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6510,
                                    "itemId": "7de35a84f134b46d60d3f8c6dc97e07e",
                                    "name": "记忆棒",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6511,
                                    "itemId": "efb569fbd09fdbee101dc7f6a12bee87",
                                    "name": "闪存卡/U盘/存储/移动硬盘其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6512,
                                    "itemId": "e0d9457d16ba8782f66f4e288bf6b092",
                                    "name": "移动固态硬盘",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6513,
                                    "itemId": "17819ee613507340ee6448e7fdd0554f",
                                    "name": "闪存卡",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6505,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 6514,
                            "itemId": "092e4800b7941a036a1874cb7fecd6f8",
                            "name": "MP3/MP4/iPod/录音笔",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000
                        },
                        {
                            "id": 6515,
                            "itemId": "32d8e9a02c5e5e7794a5fa0c577a383c",
                            "name": "笔记本电脑",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000
                        },
                        {
                            "id": 6516,
                            "itemId": "ea34413050c22605d6403e4c6fc9dd77",
                            "name": "网络设备/网络相关",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6517,
                                    "itemId": "9820fa659ccd8dad5428a437501c0ae0",
                                    "name": "智能控制终端",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6518,
                                    "itemId": "49dfe56bca70ee52a26dbb05ac53fdb1",
                                    "name": "无线上网设备与终端",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6519,
                                    "itemId": "3cedf3a3578e77f6aa04727f1e13153b",
                                    "name": "路由器",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6520,
                                            "itemId": "ed5bd12a22ce9bfa1346bb0238078ca3",
                                            "name": "电力猫",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6521,
                                            "itemId": "08ec1d15aaa6a0af9850b2d29b3adae6",
                                            "name": "路由器其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6522,
                                            "itemId": "39fba17f792d9f4d8e5e4cb8546c017e",
                                            "name": "移动路由器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6523,
                                            "itemId": "ab1283415a56b51732ed60fa8c390fd1",
                                            "name": "普通路由器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6524,
                                            "itemId": "6f59023cc05d623b0c3486f83b10c66a",
                                            "name": "网桥",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6525,
                                            "itemId": "d07492d23bc5d3235b34764b88a432e9",
                                            "name": "全屋覆盖路由器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6526,
                                            "itemId": "17911f590c0e4c0a75c8312b9de47b20",
                                            "name": "随身wifi",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6527,
                                            "itemId": "b0f82330f8195dc81c1cbe3905a45d12",
                                            "name": "中继器/扩展器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6519,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6528,
                                    "itemId": "29aae960b7d841be6aae24088e50980c",
                                    "name": "网络存储设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6529,
                                            "itemId": "2d8eb8f80250b191520c967e511524d5",
                                            "name": "网络存储设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6530,
                                            "itemId": "4931d93fd89193a7e94fd6c95b280366",
                                            "name": "磁带机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6531,
                                            "itemId": "64d0c0795ec20056bd3f314e0959558a",
                                            "name": "SCSI配件",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6532,
                                            "itemId": "06376847b35833b0b508f0db32a0d1cf",
                                            "name": "SCSI卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6533,
                                            "itemId": "624076af169201f3d4cd44eb5544cb08",
                                            "name": "磁带",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6534,
                                            "itemId": "a8d86aa6e1e6b1cce7e49897aba6c726",
                                            "name": "磁盘阵列",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6535,
                                            "itemId": "56ae5a3c1820a5929cba95a236cfb201",
                                            "name": "KVM切换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6536,
                                            "itemId": "6adcfbe89bd1c22b6fe8ba9e6e96a54e",
                                            "name": "家庭网络存储",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6537,
                                            "itemId": "c7df6a436a2cce2f935b73ac97b36cbc",
                                            "name": "NAS网络储存",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6538,
                                            "itemId": "5ac33b4c665624de8e95474297e6d3cd",
                                            "name": "硬盘抽取盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6539,
                                            "itemId": "d86a290bd4d8654f5843b1db1aecf5a1",
                                            "name": "网络延长器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6540,
                                            "itemId": "7269d0b21e325312bbbb076771b616be",
                                            "name": "RAID卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6541,
                                            "itemId": "f44aa27a04497dade6e8d484d168dd40",
                                            "name": "SAN网络储存",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6542,
                                            "itemId": "903dd19e3f167fb95bcfe66217b5e463",
                                            "name": "磁带库",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6528,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6543,
                                    "itemId": "0dd3c408aa250d7565c3048863e62d23",
                                    "name": "机房布线",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6544,
                                            "itemId": "b7f1fc4becd536b2832262c16c29a9c2",
                                            "name": "PDU电源分配器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6543,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6545,
                                            "itemId": "86162d8d53f6a205421a8d7127d052a5",
                                            "name": "综合布线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6543,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6546,
                                            "itemId": "8fd70e82afdbb59c4141eecc233744c3",
                                            "name": "机房布线其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6543,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6547,
                                            "itemId": "306934b6b131224ab63e8afd3cbda31f",
                                            "name": "精密空调",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6543,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6548,
                                    "itemId": "c3c3070563343e7c600a44515f7cc715",
                                    "name": "数码线材",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6549,
                                    "itemId": "4e1db9d790a3960531a6ac9d57169fc6",
                                    "name": "网络安全",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6550,
                                            "itemId": "b509a7ad7e1a479e2d679a6359b5e101",
                                            "name": "应用监管",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6551,
                                            "itemId": "e8107f8ab646d324826da9d20eac8de1",
                                            "name": "防毒及邮件过滤",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6552,
                                            "itemId": "64f2f169be5bb59bc594577903bf045b",
                                            "name": "网络漏洞扫描",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6553,
                                            "itemId": "c45d6126c26d014200adbb09b83a9a61",
                                            "name": "防火墙",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6554,
                                            "itemId": "3992bd6b7df6e2f66984bf0df3995554",
                                            "name": "入侵检测",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6555,
                                            "itemId": "1c9ec381477f8b09b687c827770f984b",
                                            "name": "物理安全隔离",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6556,
                                            "itemId": "d41b3e0cf7a67b7338b5508b1c8b73b4",
                                            "name": "内网安全",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6557,
                                            "itemId": "31a0990e6bbd91c07b1129adfbc4b0c8",
                                            "name": "物理防火墙",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6558,
                                            "itemId": "8558f04892bb8e8db928441091690738",
                                            "name": "网络安全其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6559,
                                            "itemId": "287ca24285ef865ce03c0448d0453c5a",
                                            "name": "UTM",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6549,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6560,
                                    "itemId": "dd72949016e4b8e5440eae265807fc7a",
                                    "name": "网关",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6561,
                                    "itemId": "ad85e5302ca77ca323d87d6a405fb994",
                                    "name": "视频监控",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6562,
                                            "itemId": "b7a1f880ff8c17f125ad465c312ab5e0",
                                            "name": "摄像设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6563,
                                            "itemId": "c872343aa1c8612f852a740f4d5b7a61",
                                            "name": "显示控制",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6564,
                                            "itemId": "4422f595648cbef8a289a5ccea03f298",
                                            "name": "监控控制台",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6565,
                                            "itemId": "551352b01f0959d0e2d36bf4ff73b48c",
                                            "name": "传输设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6566,
                                            "itemId": "410c22af00d2d1f216be93777557484a",
                                            "name": "网络图像设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6567,
                                            "itemId": "558021a9a679219ff98d979b7b035cf3",
                                            "name": "视频监控其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6568,
                                            "itemId": "052a75ed69ab934f683b2f759cb7dbed",
                                            "name": "网络摄像机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6561,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6569,
                                    "itemId": "d294641650e106458329d2a892ae639e",
                                    "name": "宽带猫/光猫",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6570,
                                    "itemId": "d72977c424a4496aa597d22edc2444c5",
                                    "name": "交换机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6571,
                                    "itemId": "06675dff142bff9bc4354605ea37a740",
                                    "name": "路由器/猫/网卡配件",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6572,
                                            "itemId": "5d758837c1cce3b6b4b453e43139b666",
                                            "name": "路由器/猫/网卡配件其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6571,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6574,
                                            "itemId": "bc293f531b80c26a61aacfc12494ce38",
                                            "name": "天线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6571,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16481,
                                            "itemId": "886feaef6626a08430804dd945c51f3c",
                                            "name": "网络设备电源/适配器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6571,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6575,
                                    "itemId": "5f91843119078af58558f08a92baa0f5",
                                    "name": "无线网络",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6576,
                                            "itemId": "4957ba4c3aef0313e27adb1502441e55",
                                            "name": "天馈系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6575,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6577,
                                            "itemId": "54631ce09e0ca77eb001d0e6a8a51cdc",
                                            "name": "功率放大器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6575,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6578,
                                            "itemId": "82f88093e8d6d422c646001516a607ce",
                                            "name": "无线网络其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6575,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6579,
                                            "itemId": "32d5f45147d0ae3e68857a820a3abffa",
                                            "name": "无线安全保密",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6575,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6580,
                                    "itemId": "49fe702c12056b07b2d7e0d1d9b82f98",
                                    "name": "无线高清",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6581,
                                    "itemId": "6a5e813eecbead7f3ef5754771cb7c74",
                                    "name": "区块链技术产品",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6582,
                                            "itemId": "252b0f49033b0eb813c45e03e3b56a66",
                                            "name": "数字货币硬件钱包",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6581,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6583,
                                            "itemId": "afc2d33d4a00bde7006d4afc2822f525",
                                            "name": "带宽共享设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6581,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6584,
                                            "itemId": "16e182f54ce3e28dfbb311e281f2aa3f",
                                            "name": "区块链技术产品其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6581,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6585,
                                    "itemId": "a3d1e99a00ae06515192936bcc9bb7b3",
                                    "name": "语音视频",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6586,
                                            "itemId": "bddddd182dcb85822b901ead710074eb",
                                            "name": "电视墙与操作台",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6585,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6587,
                                            "itemId": "044851d0218c276145034f9264a0c60b",
                                            "name": "语音视频其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6585,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6588,
                                            "itemId": "e368846af727e4a3664a2daa010d266d",
                                            "name": "视频会议",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6585,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6589,
                                            "itemId": "1267051d3c0206572c5f53d005963dfa",
                                            "name": "中央控制系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6585,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6590,
                                            "itemId": "1ee4b3cf5530364a01e8ac186d774b6b",
                                            "name": "音频及会议系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6585,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6591,
                                    "itemId": "d48b1b1bd24334cddcee65628f6a218a",
                                    "name": "电脑/网络工具",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6592,
                                            "itemId": "c96fa91ca1bd7c0cd05f35057179608b",
                                            "name": "无盘工作站",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6593,
                                            "itemId": "96be7c89d44d97ea6b4cd03201821b5c",
                                            "name": "网络测试仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6594,
                                            "itemId": "8e4be50253bc1755c70d9a6a773beb22",
                                            "name": "电脑/网络工具其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6596,
                                            "itemId": "3ea85fce40d1ce6f6b34cec7fa266a1f",
                                            "name": "电脑切换器/分配器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6597,
                                            "itemId": "79094fada196eed6522a746df6c1c49b",
                                            "name": "打线刀",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6598,
                                            "itemId": "55e3f93165b2188bfc419545cca5b780",
                                            "name": "配线架",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6601,
                                            "itemId": "b105f1864b514c290e909b795ef747bc",
                                            "name": "工具套装",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6602,
                                            "itemId": "f22c264d92c4911c207f498ffa690f11",
                                            "name": "机柜",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16483,
                                            "itemId": "5f074877e17d71789ce59445dacdd998",
                                            "name": "电脑/网络螺丝刀",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16487,
                                            "itemId": "51eac10ca84c368c880fc77dc316f0fb",
                                            "name": "电脑压线钳",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16488,
                                            "itemId": "b13c8a8118ead6e69774d2c0d72fcf9f",
                                            "name": "电脑/网络万用表",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6591,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6603,
                                    "itemId": "ae1b1cbfdab4c1f3ad5b1e3f2b6046c5",
                                    "name": "网络设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6604,
                                            "itemId": "bce3f7094cdb0c32c0fa8ebc6c9dc32f",
                                            "name": "功能服务器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6605,
                                            "itemId": "d179b3bcf44c4b1661ba9fe6f566bb64",
                                            "name": "上网行为管理",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6606,
                                            "itemId": "cdc8476b27d0c5534c856a010a18fbfa",
                                            "name": "计费系统",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6607,
                                            "itemId": "2d871f6a37ee626e292e10de9dbaa6e8",
                                            "name": "工业网络交换机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6608,
                                            "itemId": "a3ef5d46bac775c7af5033292153a3fe",
                                            "name": "集线器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6609,
                                            "itemId": "3d336714e8fb744dabb6951d8c1bcf09",
                                            "name": "收发器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6610,
                                            "itemId": "d50576f958ff9307795c6850ca97822c",
                                            "name": "测试仪",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6611,
                                            "itemId": "b8ec092c57fdc9cbd52b17c596f47a77",
                                            "name": "模块接口卡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6612,
                                            "itemId": "7c2a8e16cfa1f5cd9e4af6fb6150dc0c",
                                            "name": "程控交换机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6613,
                                            "itemId": "dc8f9bdca4da8926872a24633c4f8ea4",
                                            "name": "XDSL设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6614,
                                            "itemId": "46f042dfd8de1746c31d9830376f8bf6",
                                            "name": "网页过滤",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6616,
                                            "itemId": "2303e65daf3166c08740eee4becf4516",
                                            "name": "流量管理设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6617,
                                            "itemId": "d4c3c8438c4e3d62f5c274375b3fc8a0",
                                            "name": "网络设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6618,
                                            "itemId": "6474629c04607110c1da1f27904804e1",
                                            "name": "复用器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6620,
                                            "itemId": "81bdb1d753251b6075210031a6c20516",
                                            "name": "负载均衡",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6621,
                                            "itemId": "ad16dabe7de8ec717997bb53823c7f45",
                                            "name": "网络加速及优化",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6622,
                                            "itemId": "23a8a16e37363dd0a38edc7b7439f808",
                                            "name": "电力线通信设备",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6623,
                                            "itemId": "a7ee8015d85c6ed4a41fbb9a430f3b5b",
                                            "name": "串口通讯服务器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16489,
                                            "itemId": "1a9790a5b4755d346c11c262da296c12",
                                            "name": "网络设备转换器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6603,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6624,
                                    "itemId": "932d26ed3e4909037d7a595f91e1694c",
                                    "name": "网络设备/网络相关其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6625,
                                    "itemId": "8dd1dab61023e518a8ee8f56037cf722",
                                    "name": "光纤设备",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000,
                                    "categoryVos": [
                                        {
                                            "id": 6626,
                                            "itemId": "1b79d5fc43f6b12ebb11a334fc3a565a",
                                            "name": "光纤终端盒",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6625,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6628,
                                            "itemId": "02a17f0f9c65d761e76b1593deef6249",
                                            "name": "光纤设备其他",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6625,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6629,
                                            "itemId": "93282bf681cbbe5bb8f2920c97dd82af",
                                            "name": "光纤跳线",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6625,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 6630,
                                            "itemId": "2e5a3486e8c9fc98a0a23eea269c7d8c",
                                            "name": "光纤耦合器",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6625,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        },
                                        {
                                            "id": 16506,
                                            "itemId": "a76878b355e017d41ec37e8e4a27119c",
                                            "name": "光纤光端机",
                                            "level": 4,
                                            "firstCatId": 5626,
                                            "secondCatId": 6516,
                                            "thirdCatId": 6625,
                                            "createTimestamp": 1650384000000,
                                            "updateTimestamp": 1650384000000
                                        }
                                    ]
                                },
                                {
                                    "id": 6631,
                                    "itemId": "b450fa2a56b99cab15ce861382d9d862",
                                    "name": "网卡",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6516,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        },
                        {
                            "id": 6632,
                            "itemId": "305c89cbce7141b3aa1dbef3f83fcc69",
                            "name": "DIY电脑",
                            "level": 2,
                            "firstCatId": 5626,
                            "createTimestamp": 1650384000000,
                            "updateTimestamp": 1650384000000,
                            "categoryVos": [
                                {
                                    "id": 6633,
                                    "itemId": "02d4ce05047914b7216f89a0f83d15bb",
                                    "name": "DIY电脑其他",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6632,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6634,
                                    "itemId": "a8791a6605e8570a55eba2ef52e30369",
                                    "name": "DIY一体机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6632,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                },
                                {
                                    "id": 6635,
                                    "itemId": "c714614758fddfcf78b50d7abdc507b1",
                                    "name": "DIY兼容机",
                                    "level": 3,
                                    "firstCatId": 5626,
                                    "secondCatId": 6632,
                                    "createTimestamp": 1650384000000,
                                    "updateTimestamp": 1650384000000
                                }
                            ]
                        }
                    ]
                }
            ],
            "total": 1,
            "time": 101
        }
    }

    6. 状态码

    以下仅列出了接口业务逻辑相关的状态码。

    状态码 描述

    微信扫描二维码在线咨询