// ================================================================================= // 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:"是否联系 1是 0否"` Note string `json:"note" orm:"note" description:"备注"` Source int `json:"source" orm:"source" description:"数据来源, 0:原数据,现赢在美股导流部分 1:现DeepChart导流部分"` BenefitIntention string `json:"benefitIntention" orm:"benefit_intention" description:"用户选择的优先获取的权益意向 1:DeepChart 2:夺宝奇兵 3:专题课 用英文逗号分割"` }