mirror of
https://github.com/tiger1103/gfast.git
synced 2026-09-23 10:51:07 +00:00
23 lines
630 B
Go
23 lines
630 B
Go
// ==========================================================================
|
|
// This is auto-generated by gf cli tool. Fill this file as you wish.
|
|
// ==========================================================================
|
|
|
|
package model
|
|
|
|
import (
|
|
comModel "gfast/app/common/model"
|
|
"gfast/app/system/model/internal"
|
|
)
|
|
|
|
// SysUserOnline is the golang structure for table sys_user_online.
|
|
type SysUserOnline internal.SysUserOnline
|
|
|
|
// Fill with you ideas below.
|
|
|
|
// SysUserOnlineSearchReq 列表搜索参数
|
|
type SysUserOnlineSearchReq struct {
|
|
Username string `p:"userName"`
|
|
Ip string `p:"ipaddr"`
|
|
comModel.PageReq
|
|
}
|