# 会员功能限制配置 - 切换会员功能限制状态

> 模块标识：memberFunctionLimit  |  接口数量：5

## 接口说明
**方法**：	PUT

**路径**：				/api/members/function-limits/{limitId}/status

**功能说明**：
切换限制配置启用/禁用状态

### 请求参数
```json
{
  "path": [
    {
      "name": "limitId",
      "type": "string",
      "required": true,
      "description": "限制配置ID"
    }
  ],
  "body": {
    "status": "number｜必填，状态：1-启用，0-禁用"
  }
}
```

### 响应示例
```json
{
  "success": {
    "code": "0000",
    "message": "状态更新成功",
    "data": {
      "id": 1,
      "code": "MFL0001",
      "status": 1
    }
  }
}
```

