We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51b6c10 commit 3c9d817Copy full SHA for 3c9d817
server/model/sys_operation_record.go
@@ -16,7 +16,7 @@ type SysOperationRecord struct {
16
Latency time.Duration `json:"latency" form:"latency" gorm:"column:latency;comment:延迟"`
17
Agent string `json:"agent" form:"agent" gorm:"column:agent;comment:代理"`
18
ErrorMessage string `json:"error_message" form:"error_message" gorm:"column:error_message;comment:错误信息"`
19
- Body string `json:"body" form:"body" gorm:"column:body;comment:请求Body"`
+ Body string `json:"body" form:"body" gorm:"type:longtext;column:body;comment:请求Body"`
20
Resp string `json:"resp" form:"resp" gorm:"type:longtext;column:resp;comment:响应Body"`
21
UserID int `json:"user_id" form:"user_id" gorm:"column:user_id;comment:用户id"`
22
User SysUser `json:"user"`
0 commit comments