{
  "info": {
    "name": "会员功能管理",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "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": []
    }
  ]
}