You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1009 B
21 lines
1009 B
// =================================================================================
|
|
// 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:""` //
|
|
}
|