{
  "module": {
    "module": "会员功能限制配置",
    "moduleKey": "memberFunctionLimit"
  },
  "api": {
    "title": "更新会员功能限制",
    "method": "PUT",
    "path": "/api/members/function-limits/{limitId}",
    "description": "更新指定限制配置",
    "requestParams": {
      "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｜可选，描述"
      }
    },
    "responseExample": {
      "success": {
        "code": "0000",
        "message": "更新成功",
        "data": {
          "id": 1,
          "code": "MFL0001",
          "limitValue": 200,
          "status": 1
        }
      }
    }
  }
}