github.com/SupenBysz/gf-admin-community@v0.7.4/sys_model/sys_entity/sys_user_detail.go (about)

     1  // =================================================================================
     2  // Code generated by GoFrame CLI tool. DO NOT EDIT.
     3  // =================================================================================
     4  
     5  package sys_entity
     6  
     7  import (
     8  	"github.com/gogf/gf/v2/os/gtime"
     9  )
    10  
    11  // SysUserDetail is the golang structure for table sys_user_detail.
    12  type SysUserDetail struct {
    13  	Id            int64       `json:"id"            description:"ID,保持与USERID一致"`
    14  	Realname      string      `json:"realname"      description:"姓名"`
    15  	UnionMainName string      `json:"unionMainName" description:"关联主体名称"`
    16  	LastLoginIp   string      `json:"lastLoginIp"   description:"最后登录IP"`
    17  	LastLoginArea string      `json:"lastLoginArea" description:"最后登录地区"`
    18  	LastLoginAt   *gtime.Time `json:"lastLoginAt"   description:"最后登录时间"`
    19  }