{
  "module": {
    "module": "会员功能管理",
    "moduleKey": "memberFunction"
  },
  "api": {
    "title": "切换会员功能状态",
    "method": "PUT",
    "path": "/api/members/functions/{id}/status",
    "description": "切换会员功能配置启用/禁用状态",
    "requestParams": {
      "path": [
        {
          "name": "id",
          "type": "string",
          "required": true,
          "description": "会员功能ID"
        }
      ],
      "body": {
        "status": "number｜必填，状态：1-启用，0-禁用"
      }
    },
    "responseExample": {
      "success": {
        "code": "0000",
        "message": "状态更新成功",
        "data": {
          "id": 1,
          "code": "MF0001",
          "status": 1
        }
      }
    }
  }
}