sys_oper_log.go 1.1 KB

1234567891011121314151617181920212223242526272829
  1. // =================================================================================
  2. // Code generated by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // SysOperLog is the golang structure of table sys_oper_log for DAO operations like Where/Data.
  10. type SysOperLog struct {
  11. g.Meta `orm:"table:sys_oper_log, do:true"`
  12. OperId interface{} // 日志主键
  13. Title interface{} // 模块标题
  14. BusinessType interface{} // 业务类型(0其它 1新增 2修改 3删除)
  15. Method interface{} // 方法名称
  16. RequestMethod interface{} // 请求方式
  17. OperatorType interface{} // 操作类别(0其它 1后台用户 2手机端用户)
  18. OperName interface{} // 操作人员
  19. DeptName interface{} // 部门名称
  20. OperUrl interface{} // 请求URL
  21. OperIp interface{} // 主机地址
  22. OperLocation interface{} // 操作地点
  23. OperParam interface{} // 请求参数
  24. ErrorMsg interface{} // 错误消息
  25. OperTime *gtime.Time // 操作时间
  26. }