// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // User is the golang structure for table user. type User struct { Id int64 `json:"id" orm:"id" description:""` // Account string `json:"account" orm:"account" description:""` // Password string `json:"password" orm:"password" description:""` // Username string `json:"username" orm:"username" description:""` // Area string `json:"area" orm:"area" description:""` // Status uint `json:"status" orm:"status" description:""` // CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:""` // UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:""` // }