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.
25 lines
1.4 KiB
25 lines
1.4 KiB
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package entity
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/os/gtime"
|
|
)
|
|
|
|
// MemberInfo is the golang structure for table member_info.
|
|
type MemberInfo struct {
|
|
Id int `json:"id" orm:"id" description:"主键id"`
|
|
Name string `json:"name" orm:"name" description:"姓名"`
|
|
Code string `json:"code" orm:"code" description:"国家/地区代码"`
|
|
Telephone string `json:"telephone" orm:"telephone" description:"电话号码"`
|
|
Wechat string `json:"wechat" orm:"wechat" description:"微信ID"`
|
|
Email string `json:"email" orm:"email" description:"邮箱"`
|
|
CreatedAt *gtime.Time `json:"createdAt" orm:"created_at" description:"添加时间"`
|
|
Type int `json:"type" orm:"type" description:"注册来源(0其他,1视频,2直播,3帖子)"`
|
|
Url string `json:"url" orm:"url" description:"来源地址"`
|
|
UrlMd5 string `json:"urlMd5" orm:"url_md5" description:"来源地址(MD5加密)"`
|
|
IsRelated int `json:"isRelated" orm:"is_related" description:"是否联系"`
|
|
Note string `json:"note" orm:"note" description:"备注"`
|
|
}
|