26 lines
1.6 KiB
Go
26 lines
1.6 KiB
Go
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// YudaoDemo01Contact is the golang structure for table yudao_demo01_contact.
|
|
type YudaoDemo01Contact struct {
|
|
Id int64 `json:"id" orm:"id" description:"编号"` // 编号
|
|
Name string `json:"name" orm:"name" description:"名字"` // 名字
|
|
Sex int `json:"sex" orm:"sex" description:"性别"` // 性别
|
|
Birthday *gtime.Time `json:"birthday" orm:"birthday" description:"出生年"` // 出生年
|
|
Description string `json:"description" orm:"description" description:"简介"` // 简介
|
|
Avatar string `json:"avatar" orm:"avatar" description:"头像"` // 头像
|
|
Creator string `json:"creator" orm:"creator" description:"创建者"` // 创建者
|
|
CreateTime *gtime.Time `json:"createTime" orm:"create_time" description:"创建时间"` // 创建时间
|
|
Updater string `json:"updater" orm:"updater" description:"更新者"` // 更新者
|
|
UpdateTime *gtime.Time `json:"updateTime" orm:"update_time" description:"更新时间"` // 更新时间
|
|
Deleted bool `json:"deleted" orm:"deleted" description:"是否删除"` // 是否删除
|
|
TenantId int64 `json:"tenantId" orm:"tenant_id" description:"租户编号"` // 租户编号
|
|
}
|