{
  "info": {
    "name": "权限管理系统 - 完整API文档",
    "description": "基于Express.js + Electron的权限管理系统，支持NeDB和MongoDB双存储模式。支持多站点数据隔离，用户可通过 X-Site header 切换站点和对应的数据库上下文。",
    "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  \"password\": \"string｜必填，登录密码\",\n  \"roles\": \"array｜可选，绑定角色ID数组\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\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  \"password\": \"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": "认证模块",
      "item": [
        {
          "name": "用户注册",
          "request": {
            "method": "POST",
            "header": [],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"name\": \"string｜必填，用户名\",\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\",\n  \"email\": \"string｜可选，邮箱\",\n  \"individualism\": \"boolean｜可选，是否创建独立站点，默认 false\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/register",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "register"
              ]
            }
          },
          "response": []
        },
        {
          "name": "用户登录",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "system",
                "value": "",
                "description": "系统编码，登录时自动分配系统默认管理员角色"
              }
            ],
            "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  \"email\": \"string｜可选，邮箱\",\n  \"agreeTerms\": \"boolean｜必填，是否同意协议\",\n  \"individualism\": \"boolean｜可选，是否创建独立站点，默认 false\"\n}",
              "options": {
                "raw": {
                  "language": "json"
                }
              }
            },
            "url": {
              "raw": "{{baseUrl}}/auth/client/register",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "auth",
                "client",
                "register"
              ]
            }
          },
          "response": []
        },
        {
          "name": "客户端用户登录",
          "request": {
            "method": "POST",
            "header": [
              {
                "key": "system",
                "value": "",
                "description": "系统编码，登录时自动分配系统默认管理员角色"
              }
            ],
            "body": {
              "mode": "raw",
              "raw": "{\n  \"phone\": \"string｜必填，手机号\",\n  \"password\": \"string｜必填，登录密码\",\n  \"agreeTerms\": \"boolean｜必填，是否同意协议\"\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  \"password\": \"string｜必填，登录密码\",\n  \"status\": \"number｜可选，状态：1-启用，0-禁用\"\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  \"password\": \"string｜必填，登录密码\",\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": "组织管理",
      "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": [],
            "url": {
              "raw": "{{baseUrl}}/api/resources/active",
              "host": [
                "{{baseUrl}}"
              ],
              "path": [
                "api",
                "resources",
                "active"
              ],
              "query": [
                {
                  "key": "systemId",
                  "value": "",
                  "description": "所属系统ID，用于过滤资源所属系统。不传则返回所有系统的有效资源"
                },
                {
                  "key": "moduleId",
                  "value": "",
                  "description": "关联模块ID（可选）。传入时需与 systemId 搭配，用于按模块过滤资源"
                }
              ]
            }
          },
          "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": "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": "状态过滤"
                }
              ]
            }
          },
          "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}",
              "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": "会员用户管理",
      "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": "userId",
                  "value": "",
                  "description": "按客户端用户筛选"
                },
                {
                  "key": "memberId",
                  "value": "",
                  "description": "按会员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｜可选，绑定的客户端用户ID\",\n  \"memberId\": \"string｜可选，会员ID（会员管理记录的_id），如果提供会校验会员是否存在且有效\",\n  \"status\": \"number｜可选，状态：1-有效，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｜可选，绑定的客户端用户ID\",\n  \"memberId\": \"string｜可选，会员ID（会员管理记录的_id），如果提供会校验会员是否存在且有效\",\n  \"status\": \"number｜可选，状态：1-有效，0-无效\"\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/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/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": "会员开通",
          "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": "所属站点标识，用户将注册到该站点"
              }
            ],
            "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"
              },
              {
                "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-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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "编码（模糊搜索）"
                }
              ]
            }
          },
          "response": []
        },
        {
          "name": "无状态会员管理 - 简单列表查询",
          "request": {
            "method": "GET",
            "header": [
              {
                "key": "X-Site",
                "value": "",
                "description": "站点标识（必填）"
              },
              {
                "key": "X-System-Code",
                "value": "",
                "description": "系统编码（必填）"
              }
            ],
            "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": "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/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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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": "系统编码（必填）"
              }
            ],
            "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"
    }
  ]
}