package youngee_talent_model import ( "github.com/gogf/gf/os/gtime" "github.com/gogf/gf/util/gmeta" ) type KuaishouUserInfo struct { gmeta.Meta `orm:"table:platform_kuaishou_user_info"` Id int `json:"id" orm:"id,primary"` OpenId string `json:"open_id" orm:"open_id"` PlatformId int `json:"platform_id" orm:"platform_id"` TalentId string `json:"talent_id" orm:"talent_id"` Code string `json:"code" orm:"code"` AccessToken string `json:"access_token" orm:"access_token"` RefreshToken string `json:"refresh_token" orm:"refresh_token"` NickName string `json:"nick_name" orm:"nick_name"` HeadUri string `json:"head_uri" orm:"head_uri"` Fan int `json:"fan" orm:"fan"` Expired bool `json:"expired" orm:"expired"` SaleNum30day int `json:"sale_num_30day" orm:"sale_num_30day"` SaleNumTotal int `json:"sale_num_total" orm:"sale_num_total"` CreateTime *gtime.Time `json:"create_time" orm:"create_time" ` // 创建时间 UpdateTime *gtime.Time `json:"update_time" orm:"update_time" ` // 创建时间 }