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.
20 lines
1010 B
20 lines
1010 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:"用户名"` // 用户名
|
|
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:""` //
|
|
}
|