13 lines
382 B
Go
13 lines
382 B
Go
package entity
|
|
|
|
import "github.com/gogf/gf/v2/os/gtime"
|
|
|
|
// AdminUser 后台管理员账号。
|
|
type AdminUser struct {
|
|
Id int64 `json:"id" orm:"id"`
|
|
Username string `json:"username" orm:"username"`
|
|
Password string `json:"-" orm:"password"`
|
|
Status int `json:"status" orm:"status"`
|
|
CreatedAt *gtime.Time `json:"created_at" orm:"created_at"`
|
|
}
|