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
789 B
20 lines
789 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 uint `json:"id" orm:"id" ` //
|
|
Name string `json:"name" orm:"name" ` //
|
|
Pass string `json:"pass" orm:"pass" ` //
|
|
Property uint `json:"property" orm:"property" ` //
|
|
CreateAt *gtime.Time `json:"createAt" orm:"create_at" ` //
|
|
DeleteAt *gtime.Time `json:"deleteAt" orm:"delete_at" ` //
|
|
UpdateAt *gtime.Time `json:"updateAt" orm:"update_at" ` //
|
|
}
|