sys_oper_log.go 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. // ==========================================================================
  2. // This is auto-generated by gf cli tool. Fill this file as you wish.
  3. // ==========================================================================
  4. package model
  5. import (
  6. comModel "dashoo.cn/micro/app/common/model"
  7. "dashoo.cn/micro/app/model/internal"
  8. "github.com/gogf/gf/frame/g"
  9. "net/url"
  10. )
  11. // SysOperLog is the golang structure for table sys_oper_log.
  12. type SysOperLog internal.SysOperLog
  13. // Fill with you ideas below.
  14. // SysOperLogAdd 添加操作日志参数
  15. type SysOperLogAdd struct {
  16. User *CtxUser
  17. Menu *SysMenu
  18. Url *url.URL
  19. Params g.Map
  20. Method string
  21. ClientIp string
  22. OperatorType int
  23. }
  24. // SysOperLogSearchReq 查询列表请求参数
  25. type SysOperLogSearchReq struct {
  26. Title string `p:"title"` //系统模块
  27. OperName string `p:"operName"` //操作人员
  28. Status string `p:"status"` //操作状态
  29. SortName string `p:"orderByColumn"` //排序字段
  30. SortOrder string `p:"isAsc"` //排序方式
  31. RequestMethod string `p:"requestMethod"` //操作类型
  32. comModel.PageReq
  33. }