mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-18 09:16:40 +08:00
20 lines
893 B
Go
Executable File
20 lines
893 B
Go
Executable File
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// SysBlacklist is the golang structure for table sys_blacklist.
|
|
type SysBlacklist struct {
|
|
Id int64 `json:"id" orm:"id" description:"黑名单ID"`
|
|
Ip string `json:"ip" orm:"ip" description:"IP地址"`
|
|
Remark string `json:"remark" orm:"remark" description:"备注"`
|
|
Status int `json:"status" orm:"status" description:"状态"`
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"创建时间"`
|
|
UpdatedAt *gtime.Time `json:"updatedAt" orm:"updated_at" description:"更新时间"`
|
|
}
|