33 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1006 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package model
 | |
| 
 | |
| import (
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| type OperationLog struct {
 | |
| 	BaseModel
 | |
| 	Group  string `gorm:"type:varchar(64)" json:"group"`
 | |
| 	Source string `gorm:"type:varchar(64)" json:"source"`
 | |
| 	Action string `gorm:"type:varchar(64)" json:"action"`
 | |
| 
 | |
| 	IP        string `gorm:"type:varchar(64)" json:"ip"`
 | |
| 	Path      string `gorm:"type:varchar(64)" json:"path"`
 | |
| 	Method    string `gorm:"type:varchar(64)" json:"method"`
 | |
| 	UserAgent string `gorm:"type:varchar(256)" json:"userAgent"`
 | |
| 	Body      string `gorm:"type:longText" json:"body"`
 | |
| 	Resp      string `gorm:"type:longText" json:"resp"`
 | |
| 
 | |
| 	Latency time.Duration `gorm:"type:varchar(64)" json:"latency"`
 | |
| 
 | |
| 	Detail string `gorm:"type:longText" json:"detail"`
 | |
| }
 | |
| 
 | |
| type LoginLog struct {
 | |
| 	BaseModel
 | |
| 	IP      string `gorm:"type:varchar(64)" json:"ip"`
 | |
| 	Address string `gorm:"type:varchar(64)" json:"address"`
 | |
| 	Agent   string `gorm:"type:varchar(256)" json:"agent"`
 | |
| 	Status  string `gorm:"type:varchar(64)" json:"status"`
 | |
| 	Message string `gorm:"type:longText" json:"message"`
 | |
| }
 | 
