# 会员功能限制配置 - 更新会员功能限制

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

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

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

**功能说明**：
更新指定限制配置

### 请求参数
```json
{
  "path": [
    {
      "name": "limitId",
      "type": "string",
      "required": true,
      "description": "限制配置ID"
    }
  ],
  "body": {
    "memberTypeId": "string｜可选，会员类型ID",
    "systemId": "string｜可选，系统ID",
    "moduleId": "string｜可选，模块ID",
    "limitValue": "number｜可选，限制值（>=0）",
    "status": "number｜可选，状态：1-启用，0-禁用",
    "description": "string｜可选，描述"
  }
}
```

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

