feat: 操作日志

This commit is contained in:
Blizzard
2025-09-15 21:49:55 +08:00
parent 6beb915adf
commit 79c19bc47c
10 changed files with 186 additions and 15 deletions
@@ -0,0 +1,14 @@
package request
import (
common "sundynix-go/model/commom/request"
)
type GetOperationRecordList struct {
common.PageInfo
Ip string `json:"ip" form:"ip"`
Method string `json:"method" form:"method"`
Path string `json:"path" form:"path"`
UserId string `json:"userId" form:"userId"`
Status int `json:"status" form:"status"`
}