{
  "openapi": "3.0.3",
  "info": {
    "title": "会员功能限制配置 - 更新会员功能限制",
    "version": "1.0.0",
    "description": "会员功能限制配置相关接口文档"
  },
  "paths": {
    "/api/members/function-limits/{limitId}": {
      "put": {
        "summary": "更新会员功能限制",
        "description": "更新指定限制配置",
        "parameters": [
          {
            "name": "limitId",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "限制配置ID"
          }
        ],
        "requestBody": {
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "memberTypeId": {
                    "type": "string",
                    "description": "string｜可选，会员类型ID"
                  },
                  "systemId": {
                    "type": "string",
                    "description": "string｜可选，系统ID"
                  },
                  "moduleId": {
                    "type": "string",
                    "description": "string｜可选，模块ID"
                  },
                  "limitValue": {
                    "type": "number",
                    "description": "number｜可选，限制值（>=0）"
                  },
                  "status": {
                    "type": "number",
                    "description": "number｜可选，状态：1-启用，0-禁用"
                  },
                  "description": {
                    "type": "string",
                    "description": "string｜可选，描述"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "成功响应",
            "content": {
              "application/json": {
                "example": {
                  "success": {
                    "code": "0000",
                    "message": "更新成功",
                    "data": {
                      "id": 1,
                      "code": "MFL0001",
                      "limitValue": 200,
                      "status": 1
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}