| 123456789101112131415161718192021222324252627282930313233343536373839 |
- // ==========================================================================
- // This is auto-generated by gf cli tool. Fill this file as you wish.
- // ==========================================================================
- package model
- import (
- comModel "dashoo.cn/micro/app/common/model"
- "dashoo.cn/micro/app/model/internal"
- "github.com/gogf/gf/frame/g"
- "net/url"
- )
- // SysOperLog is the golang structure for table sys_oper_log.
- type SysOperLog internal.SysOperLog
- // Fill with you ideas below.
- // SysOperLogAdd 添加操作日志参数
- type SysOperLogAdd struct {
- User *CtxUser
- Menu *SysMenu
- Url *url.URL
- Params g.Map
- Method string
- ClientIp string
- OperatorType int
- }
- // SysOperLogSearchReq 查询列表请求参数
- type SysOperLogSearchReq struct {
- Title string `p:"title"` //系统模块
- OperName string `p:"operName"` //操作人员
- Status string `p:"status"` //操作状态
- SortName string `p:"orderByColumn"` //排序字段
- SortOrder string `p:"isAsc"` //排序方式
- RequestMethod string `p:"requestMethod"` //操作类型
- comModel.PageReq
- }
|