You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.6 KiB

3 years ago
3 years ago
  1. // 自动生成模板SysOperationRecord
  2. package system
  3. import (
  4. "time"
  5. "github.com/flipped-aurora/gin-vue-admin/server/global"
  6. )
  7. // 如果含有time.Time 请自行import time包
  8. type SysOperationRecord struct {
  9. global.GVA_MODEL
  10. Ip string `json:"ip" form:"ip" gorm:"column:ip;comment:请求ip"` // 请求ip
  11. Method string `json:"method" form:"method" gorm:"column:method;comment:请求方法"` // 请求方法
  12. Path string `json:"path" form:"path" gorm:"column:path;comment:请求路径"` // 请求路径
  13. Status int `json:"status" form:"status" gorm:"column:status;comment:请求状态"` // 请求状态
  14. Latency time.Duration `json:"latency" form:"latency" gorm:"column:latency;comment:延迟" swaggertype:"string"` // 延迟
  15. Agent string `json:"agent" form:"agent" gorm:"column:agent;comment:代理"` // 代理
  16. ErrorMessage string `json:"error_message" form:"error_message" gorm:"column:error_message;comment:错误信息"` // 错误信息
  17. Body string `json:"body" form:"body" gorm:"type:text;column:body;comment:请求Body"` // 请求Body
  18. Resp string `json:"resp" form:"resp" gorm:"type:text;column:resp;comment:响应Body"` // 响应Body
  19. UserID int `json:"user_id" form:"user_id" gorm:"column:user_id;comment:用户id"` // 用户id
  20. User SysUser `json:"user"`
  21. }