12345678910111213141516171819 |
- package models
-
- type AdminUserLoginLog struct {
- Id int `gorm:"PRIMARY_KEY;AUTO_INCREMENT"`
- AdminUserId int `gorm:"column:admin_user_id"`
- OrgId int `gorm:"column:org_id"`
- AppId int `gorm:"column:app_id"`
- IP string `gorm:"column:ip"`
- OperateType int8 `gorm:"column:operate_type"`
- AppType int8 `gorm:"column:app_type"`
-
- CreateTime int64 `gorm:"column:ctime"`
-
- }
-
- func (AdminUserLoginLog) TableName() string {
- return "sgj_user_admin_login_log"
- }
|