{
  "info": {
    "name": "权限管理系统 - 完整API文档",
    "description": "基于Express.js + Electron的权限管理系统，支持NeDB和MongoDB双存储模式。支持多站点（X-Site）与数据分区（X-Scope-Key）隔离，供外部业务系统对接。",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "item": [
    {
      "name": "用户管理",
      "item": [
        {
          "name": "获取用户列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "用户姓名（模糊搜索）"
                },
                {
                  "key": "phone",
                  "value": "",
                  "description": "手机号（模糊搜索）"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态：1-正常，0-禁用"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取用户详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建用户",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，用户姓名\",\n  \"phone\": \"string｜必填，手机号，唯一\",\n  \"email\": \"string｜可选，邮箱\",\n  \"roles\": \"array｜可选，绑定角色ID数组\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"individualism\": \"boolean｜可选，是否开通独立站点\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新用户",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜可选，用户姓名\",\n  \"phone\": \"string｜可选，手机号，唯一\",\n  \"email\": \"string｜可选，邮箱\",\n  \"roles\": \"array｜可选，绑定角色ID数组\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除用户",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换用户状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/users/{id}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users",
                "{id}",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "重置用户密码",
          "request": {
            "method": "PUT",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/users/{id}/reset-password",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "users",
                "{id}",
                "reset-password"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "认证模块",
      "item": [
        {
          "name": "用户注册",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，用户名\",\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\",\n  \"roles\": \"array｜可选，角色ID数组\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/register",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "register"
              ]
            }
          },
          "response": []
        },
        {
          "name": "用户登录",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/login",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "login"
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户注册",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，客户端用户姓名\",\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/client/register",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "client",
                "register"
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户登录",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/client/login",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "client",
                "login"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "系统管理",
      "item": [
        {
          "name": "业务开通",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"systemCode\": \"string｜必填，要开通的系统编码\",\n  \"expireDays\": \"number｜可选，业务有效天数\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/system/business/activate",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "system",
                "business",
                "activate"
              ]
            }
          },
          "response": []
        },
        {
          "name": "用户存储模式切换",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"mode\": \"string｜必填，目标存储模式，可选 'FILE' 或 'CLOUD'\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/system/storage/switch",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "system",
                "storage",
                "switch"
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户存储模式切换",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"mode\": \"string｜必填，目标存储模式，可选 'FILE' 或 'CLOUD'\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/system/storage/client/switch",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "system",
                "storage",
                "client",
                "switch"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取存储模式",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/system/storage/mode",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "system",
                "storage",
                "mode"
              ]
            }
          },
          "response": []
        },
        {
          "name": "系统信息",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/system/info",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "system",
                "info"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "客户端用户管理",
      "item": [
        {
          "name": "获取客户端用户列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/client-users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "姓名关键词"
                },
                {
                  "key": "phone",
                  "value": "",
                  "description": "手机号"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态过滤"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取客户端用户详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/client-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建客户端用户",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，客户端用户姓名\",\n  \"phone\": \"string｜必填，手机号，唯一\",\n  \"email\": \"string｜可选，邮箱\",\n  \"roles\": \"array｜可选，绑定角色ID数组\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"individualism\": \"boolean｜可选，是否开通独立站点\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/client-users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新客户端用户",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜可选，客户端用户姓名\",\n  \"phone\": \"string｜可选，手机号，唯一\",\n  \"email\": \"string｜可选，邮箱\",\n  \"roles\": \"array｜可选，绑定角色ID数组\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/client-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除客户端用户",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/client-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换客户端用户状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/client-users/{id}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users",
                "{id}",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "重置客户端用户密码",
          "request": {
            "method": "PUT",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/client-users/{id}/reset-password",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "client-users",
                "{id}",
                "reset-password"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "组织管理",
      "item": [
        {
          "name": "获取组织列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "组织名称关键词"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取组织详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/organizations/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建组织",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，组织名称\",\n  \"parentId\": \"string｜可选，父级组织ID，根节点为空\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/organizations",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新组织",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，组织名称\",\n  \"parentId\": \"string｜可选，父级组织ID，根节点为空\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/organizations/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除组织",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/organizations/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取组织关联用户",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/organizations/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新组织用户关联",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，组织名称\",\n  \"parentId\": \"string｜可选，父级组织ID，根节点为空\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/organizations/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "organizations",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "部门管理",
      "item": [
        {
          "name": "获取部门列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/departments",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "organizationId",
                  "value": "",
                  "description": "按组织筛选"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "部门名称关键词"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取部门详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/departments/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建部门",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，部门名称\",\n  \"organizationId\": \"string｜必填，所属组织ID\",\n  \"leaderId\": \"string｜可选，部门负责人ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/departments",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新部门",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，部门名称\",\n  \"organizationId\": \"string｜必填，所属组织ID\",\n  \"leaderId\": \"string｜可选，部门负责人ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/departments/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除部门",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/departments/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取部门关联用户",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/departments/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新部门用户关联",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，部门名称\",\n  \"organizationId\": \"string｜必填，所属组织ID\",\n  \"leaderId\": \"string｜可选，部门负责人ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/departments/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "departments",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "岗位管理",
      "item": [
        {
          "name": "获取岗位列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/positions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "岗位名称关键词"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态过滤"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取岗位详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/positions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建岗位",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，岗位名称\",\n  \"organizationId\": \"string｜可选，所属组织ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/positions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新岗位",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，岗位名称\",\n  \"organizationId\": \"string｜可选，所属组织ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/positions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除岗位",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/positions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取岗位关联用户",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/positions/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新岗位用户关联",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，岗位名称\",\n  \"organizationId\": \"string｜可选，所属组织ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/positions/{id}/users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "positions",
                "{id}",
                "users"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "职员管理",
      "item": [
        {
          "name": "获取职员列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/staff",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "staff"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "organizationId",
                  "value": "",
                  "description": "所属组织筛选"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "姓名关键词"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取职员详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/staff/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "staff",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建职员",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，职员姓名\",\n  \"phone\": \"string｜必填，手机号\",\n  \"organizationId\": \"string｜必填，所属组织ID\",\n  \"status\": \"number｜可选，状态：1-在职，0-离职\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/staff",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "staff"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新职员",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，职员姓名\",\n  \"phone\": \"string｜必填，手机号\",\n  \"organizationId\": \"string｜必填，所属组织ID\",\n  \"status\": \"number｜可选，状态：1-在职，0-离职\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/staff/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "staff",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除职员",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/staff/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "staff",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "角色管理",
      "item": [
        {
          "name": "获取角色列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/roles",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "角色名称关键词"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "角色编码"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取角色详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/roles/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建角色",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，角色名称\",\n  \"code\": \"string｜必填，角色编码，唯一\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/roles",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新角色",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，角色名称\",\n  \"code\": \"string｜必填，角色编码，唯一\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/roles/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除角色",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/roles/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "绑定角色权限",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，角色名称\",\n  \"code\": \"string｜必填，角色编码，唯一\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/roles/{id}/permissions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles",
                "{id}",
                "permissions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "绑定角色资源",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，角色名称\",\n  \"code\": \"string｜必填，角色编码，唯一\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/roles/{id}/resources",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "roles",
                "{id}",
                "resources"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "权限管理",
      "item": [
        {
          "name": "获取权限列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/permissions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "permissions"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "权限名称关键词"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "权限编码"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取权限详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/permissions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "permissions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建权限",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，权限名称\",\n  \"code\": \"string｜必填，权限编码，唯一\",\n  \"type\": \"string｜可选，权限类型，例如menu/button\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/permissions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "permissions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新权限",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，权限名称\",\n  \"code\": \"string｜必填，权限编码，唯一\",\n  \"type\": \"string｜可选，权限类型，例如menu/button\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/permissions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "permissions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除权限",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/permissions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "permissions",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "资源管理",
      "item": [
        {
          "name": "查询所有有效资源",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "x-system-code",
                "value": "",
                "description": "系统编码（如 AUTH_MANAGEMENT）。传入后优先用于定位系统"
              },
              {
                "key": "x-function",
                "value": "",
                "description": "模块编码或模块ID。传入后用于按模块过滤资源，建议与 x-system-code 搭配"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/api/resources/active",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources",
                "active"
              ],
              "query": [
                {
                  "key": "systemId",
                  "value": "",
                  "description": "所属系统ID（兼容参数）。未传 x-system-code 时可用，不传则返回所有系统的有效资源"
                },
                {
                  "key": "moduleId",
                  "value": "",
                  "description": "关联模块ID（兼容参数）。未传 x-function 时可用，用于按模块过滤资源"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取资源列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/resources",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "资源名称关键词"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "资源编码"
                },
                {
                  "key": "type",
                  "value": "",
                  "description": "资源类型"
                },
                {
                  "key": "systemId",
                  "value": "",
                  "description": "所属系统ID，用于过滤资源所属系统"
                },
                {
                  "key": "moduleId",
                  "value": "",
                  "description": "关联模块ID（可选）。传入时需与 systemId 搭配，用于按模块过滤资源"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取资源详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/resources/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建资源",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，资源名称\",\n  \"systemId\": \"string｜必填，所属系统ID，用于绑定资源所属系统\",\n  \"type\": \"string｜必填，资源类型，例如page/api/button\",\n  \"url\": \"string｜必填，资源URL，用于路由或接口地址\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"parentId\": \"string｜可选，父级资源ID，用于构建资源树状结构，不传或传空则为根节点\",\n  \"moduleId\": \"string｜可选，关联模块ID，可为空（推荐与systemId保持一致）\",\n  \"orderNum\": \"number｜可选，排序序号（同级内升序），默认0\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/resources",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新资源",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，资源名称\",\n  \"systemId\": \"string｜可选，所属系统ID，不传则保持原值\",\n  \"type\": \"string｜必填，资源类型，例如page/api/button\",\n  \"url\": \"string｜必填，资源URL，用于路由或接口地址\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"parentId\": \"string｜可选，父级资源ID，用于构建资源树状结构，不传或传空则为根节点\",\n  \"moduleId\": \"string｜可选，关联模块ID；传空字符串或null可清空关联\",\n  \"orderNum\": \"number｜可选，排序序号（同级内升序），不传则保持原值\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/resources/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除资源",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/resources/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "客户管理",
      "item": [
        {
          "name": "获取客户列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/customers",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "客户名称关键词"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态过滤"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取客户详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/customers/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建客户",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，客户名称\",\n  \"contactName\": \"string｜可选，联系人姓名\",\n  \"contactPhone\": \"string｜可选，联系人电话\",\n  \"status\": \"number｜可选，状态：1-合作中，0-已终止\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/customers",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新客户",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，客户名称\",\n  \"contactName\": \"string｜可选，联系人姓名\",\n  \"contactPhone\": \"string｜可选，联系人电话\",\n  \"status\": \"number｜可选，状态：1-合作中，0-已终止\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/customers/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户授权",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerIds\": \"array｜必填，客户ID列表\",\n  \"targetUserId\": \"string｜必填，接收授权的用户ID\",\n  \"targetUserType\": \"string｜可选，用户类型（User/ClientUser）\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/customers/authorize",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers",
                "authorize"
              ]
            }
          },
          "response": []
        },
        {
          "name": "解除客户授权",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"customerIds\": \"array｜必填，客户ID列表\",\n  \"targetUserId\": \"string｜必填，接收授权的用户ID\",\n  \"targetUserType\": \"string｜可选，用户类型（User/ClientUser）\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/customers/unauthorize",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers",
                "unauthorize"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除客户",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/customers/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "customers",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员管理",
      "item": [
        {
          "name": "获取有效会员列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/valid-list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "valid-list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取会员列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "套餐名称关键词"
                },
                {
                  "key": "memberTypeId",
                  "value": "",
                  "description": "会员类型ID（会员类型管理记录的_id）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取会员详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，套餐名称\",\n  \"memberTypeId\": \"string｜可选，会员类型ID（会员类型管理记录的_id），如果提供会校验会员类型是否存在\",\n  \"price\": \"string｜可选，价格（两位小数，如：99.99）\",\n  \"validityDays\": \"number｜可选，有效期天数（最小值为1）\",\n  \"description\": \"string｜可选，套餐描述\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效，默认0\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，套餐名称\",\n  \"memberTypeId\": \"string｜可选，会员类型ID（会员类型管理记录的_id），如果提供会校验会员类型是否存在\",\n  \"price\": \"string｜可选，价格（两位小数，如：99.99）\",\n  \"validityDays\": \"number｜可选，有效期天数（最小值为1）\",\n  \"description\": \"string｜可选，套餐描述\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效，默认0\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换会员套餐状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/{id}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "{id}",
                "status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员类型管理",
      "item": [
        {
          "name": "获取有效会员类型列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/types/valid-list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types",
                "valid-list"
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取会员类型列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/types",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "会员类型名称关键词"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "会员类型编码关键词"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态过滤：1-有效，0-无效"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员类型",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，会员类型名称\",\n  \"code\": \"string｜必填，会员类型编码\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效，默认1\",\n  \"description\": \"string｜可选，描述信息\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/types",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员类型",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜可选，会员类型名称\",\n  \"code\": \"string｜可选，会员类型编码\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效\",\n  \"description\": \"string｜可选，描述信息\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/types/{typeId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types",
                "{typeId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员类型",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/types/{typeId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types",
                "{typeId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换会员类型状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/types/{typeId}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "types",
                "{typeId}",
                "status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "无状态会员管理",
      "item": [
        {
          "name": "获取无状态会员列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "会员名称关键词"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "会员编码"
                },
                {
                  "key": "memberTypeId",
                  "value": "",
                  "description": "按会员类型ID筛选（会员类型管理记录的_id）"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "启用状态过滤：1-有效，0-无效"
                },
                {
                  "key": "saleStatus",
                  "value": "",
                  "description": "售卖状态过滤：0-未售（可购买），1-已售（占用）。筛选未售时会包含历史无 saleStatus 字段的记录"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取无状态会员详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建无状态会员",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，会员名称\",\n  \"memberTypeId\": \"string｜可选，会员类型ID（会员类型管理记录的_id），如果提供会校验会员类型是否存在\",\n  \"effectiveDate\": \"string｜必填，生效日期\",\n  \"validityDays\": \"number｜必填，有效期天数（最小7天）\",\n  \"firstEffectiveDate\": \"string｜可选，首次生效日期\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效，默认0\",\n  \"saleStatus\": \"number｜可选，售卖状态：0-未售，1-已售，默认0。创建时设为1会同时写入 soldAt\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新无状态会员",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜可选，会员名称\",\n  \"memberTypeId\": \"string｜可选，会员类型ID（会员类型管理记录的_id），如果提供会校验会员类型是否存在\",\n  \"effectiveDate\": \"string｜可选，生效日期\",\n  \"validityDays\": \"number｜可选，有效期天数（最小7天）\",\n  \"firstEffectiveDate\": \"string｜可选，首次生效日期\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除无状态会员",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换无状态会员状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-有效，0-无效\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members/{id}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members",
                "{id}",
                "status"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换无状态会员售卖状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"saleStatus\": \"number｜必填，售卖状态：0-未售（回库），1-已售（占用）\",\n  \"orderNo\": \"string｜可选，关联订单号；标记为已售时可写入 soldOrderNo\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/stateless-members/{id}/sale-status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "stateless-members",
                "{id}",
                "sale-status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员用户管理",
      "item": [
        {
          "name": "获取会员用户列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/member-users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "member-users"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "按状态筛选：1-有效，0-无效"
                },
                {
                  "key": "memberId",
                  "value": "",
                  "description": "按会员ID筛选（会员管理记录的 _id 或 id）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取会员用户详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/member-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "member-users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员用户",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜可选，绑定的用户主键（users 或 clientUsers 的 _id/id）\",\n  \"userType\": \"string｜可选，绑定用户类型：user（系统用户）、clientUser（客户端用户）。不传时按系统用户优先、客户端用户次之自动匹配\",\n  \"memberId\": \"string｜可选，会员ID（会员管理记录的 _id/id），提供时会校验会员是否存在且有效\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效，默认1\",\n  \"orderNum\": \"number｜可选，排序号，默认0\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/member-users",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "member-users"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员用户",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜可选，绑定的用户主键（users 或 clientUsers 的 _id/id）\",\n  \"userType\": \"string｜可选，绑定用户类型：user、clientUser。更换 userId 或未传 userType 时按创建接口相同规则校验；仅更新 userType 时会用现有 userId 重新校验\",\n  \"memberId\": \"string｜可选，会员ID（会员管理记录的 _id/id），提供时会校验会员是否存在且有效\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效\",\n  \"orderNum\": \"number｜可选，排序号\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/member-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "member-users",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员用户",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/member-users/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "member-users",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员功能管理",
      "item": [
        {
          "name": "获取会员功能列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/functions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "memberTypeId",
                  "value": "",
                  "description": "按会员类型ID筛选"
                },
                {
                  "key": "systemId",
                  "value": "",
                  "description": "按系统ID筛选"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态：1-启用，0-禁用"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取会员功能详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员功能",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"memberTypeId\": \"string｜必填，会员类型ID\",\n  \"systemId\": \"string｜必填，系统ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用，默认1\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员功能",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"memberTypeId\": \"string｜可选，会员类型ID\",\n  \"systemId\": \"string｜可选，系统ID\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员功能",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换会员功能状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员功能模块关联",
      "item": [
        {
          "name": "获取会员功能模块关联列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/modules",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "modules"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "moduleName",
                  "value": "",
                  "description": "模块名称模糊搜索"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态：1-启用，0-禁用"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员功能模块关联",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"moduleId\": \"string｜可选，关联 securityModules 表记录 _id/id/code；提供时服务端自动填充 moduleCode/moduleName，并校验模块 systemId 与会员功能 systemId 一致\",\n  \"moduleCode\": \"string｜未提供 moduleId 时必填（与 moduleName 成对），自定义模块编码\",\n  \"moduleName\": \"string｜未提供 moduleId 时必填（与 moduleCode 成对），自定义模块名称\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用，默认1\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/modules",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "modules"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员功能模块关联",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"moduleId\": \"string｜可选，更换关联的系统模块 ID 或 code\",\n  \"moduleCode\": \"string｜可选，自定义模块编码（与 moduleName 配合使用）\",\n  \"moduleName\": \"string｜可选，自定义模块名称（与 moduleCode 配合使用）\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/modules/{functionModuleId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "modules",
                "{functionModuleId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员功能模块关联",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/modules/{functionModuleId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "modules",
                "{functionModuleId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换会员功能模块关联状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/functions/{id}/modules/{functionModuleId}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "functions",
                "{id}",
                "modules",
                "{functionModuleId}",
                "status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "会员功能限制配置",
      "item": [
        {
          "name": "获取会员功能限制列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/function-limits",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "function-limits"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "memberTypeId",
                  "value": "",
                  "description": "会员类型ID"
                },
                {
                  "key": "systemId",
                  "value": "",
                  "description": "系统ID"
                },
                {
                  "key": "moduleId",
                  "value": "",
                  "description": "模块ID"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "状态：1-启用，0-禁用"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建会员功能限制",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"memberTypeId\": \"string｜必填，会员类型ID\",\n  \"systemId\": \"string｜必填，系统ID\",\n  \"moduleId\": \"string｜必填，模块ID\",\n  \"limitValue\": \"number｜必填，限制值（>=0）\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用，默认1\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/function-limits",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "function-limits"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新会员功能限制",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"memberTypeId\": \"string｜可选，会员类型ID\",\n  \"systemId\": \"string｜可选，系统ID\",\n  \"moduleId\": \"string｜可选，模块ID\",\n  \"limitValue\": \"number｜可选，限制值（>=0）\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\",\n  \"description\": \"string｜可选，描述\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/function-limits/{limitId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "function-limits",
                "{limitId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除会员功能限制",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/members/function-limits/{limitId}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "function-limits",
                "{limitId}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "切换会员功能限制状态",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，状态：1-启用，0-禁用\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/members/function-limits/{limitId}/status",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "members",
                "function-limits",
                "{limitId}",
                "status"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "白名单管理",
      "item": [
        {
          "name": "获取白名单列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/whitelists",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "whitelists"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "userId",
                  "value": "",
                  "description": "按用户筛选"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取白名单详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/whitelists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "whitelists",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建白名单",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜必填，用户ID\",\n  \"reason\": \"string｜可选，加入白名单原因\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/whitelists",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "whitelists"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新白名单",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜必填，用户ID\",\n  \"reason\": \"string｜可选，加入白名单原因\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/whitelists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "whitelists",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除白名单",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/whitelists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "whitelists",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "黑名单管理",
      "item": [
        {
          "name": "获取黑名单列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/blacklists",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "blacklists"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "userId",
                  "value": "",
                  "description": "按用户筛选"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取黑名单详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/blacklists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "blacklists",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建黑名单",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜必填，用户ID\",\n  \"reason\": \"string｜可选，加入黑名单原因\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/blacklists",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "blacklists"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新黑名单",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userId\": \"string｜必填，用户ID\",\n  \"reason\": \"string｜可选，加入黑名单原因\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/blacklists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "blacklists",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除黑名单",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/blacklists/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "blacklists",
                "{id}"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "用户反馈管理",
      "item": [
        {
          "name": "获取用户反馈列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/user-feedbacks",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "user-feedbacks"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "systemCode",
                  "value": "",
                  "description": "按系统编码筛选"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取用户反馈详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/user-feedbacks/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "user-feedbacks",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "提交用户反馈（管理端）",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"content\": \"string｜可选，反馈内容（示例字段，实际 JSON 任意结构）\",\n  \"type\": \"string｜可选，反馈类型\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/user-feedbacks",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "user-feedbacks"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "审核管理",
      "item": [
        {
          "name": "获取审核记录列表",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/audit-records",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "auditType",
                  "value": "",
                  "description": "审核类型：REGISTER_USER（注册-用户）、REGISTER_CLIENT（注册-客户端）"
                },
                {
                  "key": "status",
                  "value": "",
                  "description": "审核状态：0-待审核，1-通过，2-拒绝"
                },
                {
                  "key": "systemSource",
                  "value": "",
                  "description": "系统来源编码"
                },
                {
                  "key": "relatedId",
                  "value": "",
                  "description": "关联业务记录ID"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "获取审核记录详情",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/audit-records/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "创建审核记录",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"auditType\": \"string｜必填，REGISTER_USER 或 REGISTER_CLIENT\",\n  \"relatedId\": \"string｜必填，关联业务记录 _id\",\n  \"relatedCollection\": \"string｜可选，users 或 clientUsers\",\n  \"individualism\": \"boolean｜可选，注册类审核是否需开通独立站点\",\n  \"organizationId\": \"string｜可选，企业注册时的组织ID\",\n  \"systemSource\": \"string｜可选，系统来源编码\",\n  \"applyRemark\": \"string｜可选，申请备注\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/audit-records",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records"
              ]
            }
          },
          "response": []
        },
        {
          "name": "更新审核记录",
          "request": {
            "method": "PUT",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"auditRemark\": \"string｜可选，审核备注\",\n  \"applyRemark\": \"string｜可选，申请备注\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/audit-records/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "删除审核记录",
          "request": {
            "method": "DELETE",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/audit-records/{id}",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records",
                "{id}"
              ]
            }
          },
          "response": []
        },
        {
          "name": "审核（通过/拒绝）",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"status\": \"number｜必填，1-通过，2-拒绝\",\n  \"auditRemark\": \"string｜可选，审核备注\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/api/audit-records/{id}/review",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "audit-records",
                "{id}",
                "review"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "安全系统管理",
      "item": [
        {
          "name": "查询所有有效系统",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/security/systems/active",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "security",
                "systems",
                "active"
              ]
            }
          },
          "response": []
        },
        {
          "name": "查询某个系统下的有效模块",
          "request": {
            "method": "GET",
            "header": [],
            "url": {
              "raw": "{{baseUrl}}/api/security/systems/{systemId}/modules/active",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "security",
                "systems",
                "{systemId}",
                "modules",
                "active"
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "OpenAPI 接口",
      "item": [
        {
          "name": "有状态会员有效性校验（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN（通过 /memberships/login 获取）"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（用于路由到正确数据库）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员系统支持校验（场景B）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码，同时作为校验目标（会员类型是否支持该系统）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员功能模块校验（场景C）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Function",
                "value": "",
                "description": "功能模块代码（moduleCode），如 VIDEO_DOWNLOAD"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员限额校验（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Function",
                "value": "",
                "description": "功能模块代码"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量（由第三方系统维护）\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员资源校验（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员资源校验（场景B）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员资源校验（场景C）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员资源校验（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员资源校验（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员资源校验（场景B）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员资源校验（场景C）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员资源校验（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员+用户资源合并（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/combined-valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "combined-valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员+用户资源合并（场景B）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/combined-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "combined-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员+用户资源合并（场景C）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/combined-functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "combined-functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员+用户资源合并（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "账号登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/resources/combined-limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "resources",
                "combined-limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员+用户资源合并（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/combined-valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "combined-valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员+用户资源合并（场景B）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/combined-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "combined-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员+用户资源合并（场景C）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/combined-functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "combined-functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "有状态会员+用户资源合并（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "用户登录令牌，格式 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/resources/combined-limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "resources",
                "combined-limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员开通",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "客户端登录令牌，格式为 Bearer TOKEN"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"memberType\": \"string｜必填，会员类型编码或名称，如 VIP\",\n  \"orderNo\": \"string｜必填，已支付订单号\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/activate",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "activate"
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员注册",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "注册令牌，服务端提前生成，格式为 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "所属站点标识，用户将注册到该站点"
              },
              {
                "key": "X-Individualism",
                "value": "",
                "description": "是否需开通独立站点（记录在审核单 individualism 字段，审核通过后生效），默认 true。传 false、0、no、off 表示审核通过后也不创建用户自有独立站点。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/register",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "register"
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员登录",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "登录令牌，包含手机号、密码和同意协议信息（散客账号必填），格式为 Bearer TOKEN。令牌 payload 应包含：phone（手机号）、password（密码）、agreeTerms（同意协议，散客账号必填且必须为 true）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码。用于指定当前登录的业务系统（例如 AUTH_MANAGEMENT、CONTENT_MANAGEMENT）。当系统不支持时将返回“登录用户不支持当前系统，可联系管理员处理”。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/login",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "login"
              ]
            }
          },
          "response": []
        },
        {
          "name": "登录令牌校验",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "登录接口返回的访问令牌，格式为 Bearer TOKEN"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码。用于指定当前登录的业务系统（例如 AUTH_MANAGEMENT、CONTENT_MANAGEMENT）。当系统不支持时将返回“登录用户不支持当前系统，可联系管理员处理”。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/login/verify",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "login",
                "verify"
              ]
            }
          },
          "response": []
        },
        {
          "name": "修改密码",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "修改密码令牌，格式为 Bearer TOKEN。令牌 payload 应包含：phone（手机号）、oldPassword（旧密码）、newPassword（新密码）、confirmPassword（新密码确认，须与 newPassword 一致）"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识，决定查询与更新所用的数据库上下文"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码。用于指定当前业务系统（例如 AUTH_MANAGEMENT、CONTENT_MANAGEMENT）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/memberships/change-password",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "memberships",
                "change-password"
              ]
            }
          },
          "response": []
        },
        {
          "name": "按用户 ID 查询展示名",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "会员登录接口返回的访问令牌，格式为 Bearer TOKEN（与 memberships/login 一致，需含 phone 等字段的混合 JWT）"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识，决定查询所用的数据库上下文（与全局 OpenAPI 中间件一致）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码，与其他 OpenAPI 接口一致，用于校验系统是否开放"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"userIds\": \"array｜选填，用户主键列表（_id 字符串或数字 id），最多 200 个；可省略或传 []，鉴权成功后返回空列表\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/accounts/display-names",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "accounts",
                "display-names"
              ]
            }
          },
          "response": []
        },
        {
          "name": "资源权限校验",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "登录接口返回的访问令牌，格式为 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识。用于切换站点和对应的数据库上下文。如果用户有多个可用站点，可通过此 header 切换。"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"systemCode\": \"string｜必填，目标系统编码\",\n  \"apiName\": \"string｜必填，接口标识（可使用资源 code、name、title 或 URL）\",\n  \"requiredPermissions\": \"string[]｜选填，需要同时具备的权限编码数组\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/permissions/resource-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "permissions",
                "resource-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "账户权限校验",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "Authorization",
                "value": "Bearer {{token}}",
                "description": "访问令牌，支持系统用户与客户端用户，格式为 Bearer TOKEN"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识。用于切换站点和对应的数据库上下文。如果用户有多个可用站点，可通过此 header 切换。"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"systemCode\": \"string｜必填，要校验的系统编码\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/permissions/check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "permissions",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "提交用户反馈",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "来源系统编码，会写入 systemCode 字段"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"type\": \"usage_feedback\",\n  \"questions\": [\n    {\n      \"questionId\": \"experience\",\n      \"question\": \"您对虎符系统的整体使用体验如何？\",\n      \"options\": [\n        {\n          \"value\": \"excellent\",\n          \"label\": \"非常满意\"\n        },\n        {\n          \"value\": \"good\",\n          \"label\": \"满意\"\n        },\n        {\n          \"value\": \"average\",\n          \"label\": \"一般\"\n        },\n        {\n          \"value\": \"poor\",\n          \"label\": \"不满意\"\n        }\n      ],\n      \"answer\": {\n        \"value\": \"excellent\",\n        \"label\": \"非常满意\"\n      }\n    },\n    {\n      \"questionId\": \"recommendation\",\n      \"question\": \"您是否愿意向同事推荐本系统？\",\n      \"options\": [\n        {\n          \"value\": \"very_willing\",\n          \"label\": \"非常愿意\"\n        },\n        {\n          \"value\": \"willing\",\n          \"label\": \"愿意\"\n        },\n        {\n          \"value\": \"unsure\",\n          \"label\": \"不确定\"\n        },\n        {\n          \"value\": \"unwilling\",\n          \"label\": \"不愿意\"\n        }\n      ],\n      \"answer\": {\n        \"value\": \"very_willing\",\n        \"label\": \"非常愿意\"\n      }\n    },\n    {\n      \"questionId\": \"content\",\n      \"question\": \"详细反馈\",\n      \"answer\": {\n        \"value\": \"无特殊说明\",\n        \"label\": \"无特殊说明\"\n      }\n    }\n  ]\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/user-feedbacks",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "user-feedbacks"
              ]
            }
          },
          "response": []
        },
        {
          "name": "购买/占用无状态会员",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"id\": \"string｜可选，无状态会员 _id 或数字 id\",\n  \"code\": \"string｜可选，无状态会员编码\",\n  \"orderNo\": \"string｜可选，关联订单号，写入 soldOrderNo\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/purchase",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "purchase"
              ]
            }
          },
          "response": []
        },
        {
          "name": "激活无状态会员",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌，通过混合JWT加密"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码，用于判断会员类型是否支持当前系统"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/activate",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "activate"
              ]
            }
          },
          "response": []
        },
        {
          "name": "检查无状态会员有效性",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌，通过混合JWT加密"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码，用于判断会员类型是否支持当前系统"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "检查无状态会员功能有效性",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌，通过混合JWT加密"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码，用于判断会员类型是否支持当前系统"
              },
              {
                "key": "X-Function",
                "value": "",
                "description": "功能代码，用于检查会员功能模块中是否有该功能"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/functionCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "functionCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员有效性校验（场景A）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌（混合JWT加密，payload.data = secretKey）"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（用于路由到正确数据库，本接口不校验系统-会员类型兼容性）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/valid-check",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "valid-check"
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员限额校验（场景D）",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "X-Member-Key",
                "value": "",
                "description": "会员密钥令牌（混合JWT加密）"
              },
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码"
              },
              {
                "key": "X-Function",
                "value": "",
                "description": "功能模块代码（moduleCode），如 VIDEO_DOWNLOAD"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"currentCount\": \"number｜必填，当前已使用次数/数量（由第三方系统维护），如 8\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/limitCheck",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "limitCheck"
              ]
            }
          },
          "response": []
        },
        {
          "name": "用户管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/users/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "users",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "用户管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/users/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "users",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/client-users/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "client-users",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/client-users/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "client-users",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "组织管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/organizations/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "organizations",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "组织管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/organizations/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "organizations",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "部门管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/departments/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "departments",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "部门管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/departments/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "departments",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "岗位管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/positions/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "positions",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "岗位管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/positions/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "positions",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "职员管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/staff/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "staff",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "职员管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/staff/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "staff",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "角色管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/roles/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "roles",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "角色管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/roles/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "roles",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "资源管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/resources/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "resources",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "资源管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/resources/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "resources",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "权限管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/permissions/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "permissions",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "权限管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/permissions/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "permissions",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/customers/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "customers",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/customers/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "customers",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "订单管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/orders/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "orders",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "订单管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/orders/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "orders",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/members/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "members",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/members/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "members",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "saleStatus",
                  "value": "",
                  "description": "售卖状态：0-未售（可购买），1-已售。筛选未售时包含无 saleStatus 历史数据"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "saleStatus",
                  "value": "",
                  "description": "售卖状态：0-未售，1-已售"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员用户管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-users/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-users",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员用户管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-users/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-users",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-functions/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-functions",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-functions/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-functions",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员类型管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-types/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-types",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员类型管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-types/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-types",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能限制管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-function-limits/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-function-limits",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能限制管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-function-limits/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-function-limits",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "白名单管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/whitelists/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "whitelists",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "白名单管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/whitelists/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "whitelists",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "黑名单管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/blacklists/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "blacklists",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "黑名单管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              },
              {
                "key": "X-Scope-Key",
                "value": "",
                "description": "数据 scope 分区标识（UUID）。OpenAPI 业务数据读写接口必填。登录/注册响应中的 defaultScopeKey 为默认写入/查询分区；有组织时默认使用组织 scope，无组织时使用个人 scope。禁止在 query 中传 scopeKey/organizationId 自选范围。"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/blacklists/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "blacklists",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "系统管理 - 分页列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/support-systems/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "support-systems",
                "list"
              ],
              "query": [
                {
                  "key": "pageNum",
                  "value": "",
                  "description": "页码，默认1"
                },
                {
                  "key": "pageSize",
                  "value": "",
                  "description": "每页数量，默认10"
                },
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "系统管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/support-systems/list/simple",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "support-systems",
                "list",
                "simple"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                },
                {
                  "key": "sortBy",
                  "value": "",
                  "description": "排序字段，默认createTime"
                },
                {
                  "key": "sortOrder",
                  "value": "",
                  "description": "排序方向：asc-升序，desc-降序，默认desc"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "站点数据 - 列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/sites/list",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "sites",
                "list"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "站点名称（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        }
      ]
    },
    {
      "name": "统计模块",
      "item": [
        {
          "name": "用户管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/users/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "users",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/client-users/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "client-users",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "组织管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/organizations/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "organizations",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "部门管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/departments/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "departments",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "岗位管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/positions/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "positions",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "职员管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/staff/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "staff",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "角色管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/roles/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "roles",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "资源管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/resources/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "resources",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "权限管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/permissions/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "permissions",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/customers/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "customers",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "订单管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/orders/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "orders",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/members/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "members",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/stateless-members/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "stateless-members",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员用户管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-users/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-users",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-functions/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-functions",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员类型管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-types/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-types",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "会员功能限制管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/member-function-limits/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "member-function-limits",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "白名单管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/whitelists/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "whitelists",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "黑名单管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/blacklists/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "blacklists",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "系统管理 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/support-systems/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "support-systems",
                "statistics"
              ],
              "query": [
                {
                  "key": "name",
                  "value": "",
                  "description": "名称（模糊搜索）"
                },
                {
                  "key": "code",
                  "value": "",
                  "description": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "站点数据 - 统计",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "url": {
              "raw": "{{baseUrl}}/openapi/sites/statistics",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "openapi",
                "sites",
                "statistics"
              ]
            }
          },
          "response": []
        }
      ]
    }
  ],
  "variable": [
    {
      "key": "baseUrl",
      "value": "http://localhost:5600",
      "type": "string"
    }
  ]
}