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