| 123456789101112131415161718192021222324252627 |
- // =================================================================================
- // Code generated by GoFrame CLI tool. DO NOT EDIT.
- // =================================================================================
- package entity
- import (
- "github.com/gogf/gf/v2/os/gtime"
- )
- // SysOperLog is the golang structure for table sys_oper_log.
- type SysOperLog struct {
- OperId uint64 `json:"operId" description:"日志主键"`
- Title string `json:"title" description:"模块标题"`
- BusinessType int `json:"businessType" description:"业务类型(0其它 1新增 2修改 3删除)"`
- Method string `json:"method" description:"方法名称"`
- RequestMethod string `json:"requestMethod" description:"请求方式"`
- OperatorType int `json:"operatorType" description:"操作类别(0其它 1后台用户 2手机端用户)"`
- OperName string `json:"operName" description:"操作人员"`
- DeptName string `json:"deptName" description:"部门名称"`
- OperUrl string `json:"operUrl" description:"请求URL"`
- OperIp string `json:"operIp" description:"主机地址"`
- OperLocation string `json:"operLocation" description:"操作地点"`
- OperParam string `json:"operParam" description:"请求参数"`
- ErrorMsg string `json:"errorMsg" description:"错误消息"`
- OperTime *gtime.Time `json:"operTime" description:"操作时间"`
- }
|