Files
36Wisdom/biz/model/entity/entity_admin_user.go
T
2026-08-13 11:58:27 +08:00

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"`
}