# AuditLog

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths: {}
components:
  schemas:
    AuditLog:
      required:
        - action
        - ip
        - msg
        - opTime
        - operator
        - resource
        - status
      type: object
      properties:
        operator:
          type: string
        ip:
          type: string
        resource:
          type: string
        action:
          type: string
        status:
          type: integer
          format: int32
        msg:
          type: string
        opTime:
          type: integer
          format: int64
      x-apifox-orders:
        - operator
        - ip
        - resource
        - action
        - status
        - msg
        - opTime
      x-apifox-folder: ''
  securitySchemes:
    bearer:
      type: http
      scheme: bearer
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
security:
  - bearer: []

```
