// ========================================================================== // This is auto-generated by gf cli tool. Fill this file as you wish. // ========================================================================== package model import ( "dashoo.cn/micro/app/model/internal" "dashoo.cn/opms_libary/request" ) // SysLogin is the golang structure for table sys_login. type SysLogin internal.SysLogin // Fill with you ideas below. // LoginLogParams 登录日志写入参数 type LoginLogParams struct { Status int Username string Ip string UserAgent string Msg string Module string } // SysLoginLogSearchReq 查询列表请求参数 type SysLoginLogSearchReq struct { LoginName string `p:"userName"` //登陆名 Status string `p:"status"` //状态 Ipaddr string `p:"ipaddr"` //登录地址 SortName string `p:"orderByColumn"` //排序字段 SortOrder string `p:"isAsc"` //排序方式 LoginLocation string `p:"loginLocation"` //登录地点 request.PageReq }