feat(错误日志): 实现前后端错误日志收集与管理功能

This commit is contained in:
piexlMax(奇淼
2025-10-28 16:19:25 +08:00
parent 5be32930f8
commit d36eeb5134
15 changed files with 822 additions and 51 deletions
+14
View File
@@ -0,0 +1,14 @@
package request
import (
"github.com/flipped-aurora/gin-vue-admin/server/model/common/request"
"time"
)
type SysErrorSearch struct{
CreatedAtRange []time.Time `json:"createdAtRange" form:"createdAtRange[]"`
Form *string `json:"form" form:"form"`
Info *string `json:"info" form:"info"`
request.PageInfo
}