12345678910111213141516171819202122232425262728 |
- package youngee_talent_model
- import "github.com/gogf/gf/util/gmeta"
- type InfoThirdPlatform struct {
- gmeta.Meta `orm:"table:info_third_platform"`
- PlatformId uint `json:"platform_id"` // 平台id,主键
- PlatformName string `json:"platform_name"` // 平台名
- PlatformIcon string `json:"platform_icon"` // 平台图标url
- }
- type PlatformAccountInfo struct {
- gmeta.Meta `orm:"table:platform_kuaishou_user_info"`
- TalentId string `json:"talent_id"` // 达人账号id(youngee_talent_info表id值)
- PlatformId int `json:"platform_id"` // 平台id
- Nickname string `json:"nick_name"` // 在平台上的昵称
- HomePageUrl string `json:"home_page_url"` // 主页链接
- HomePageCaptureUrl string `json:"home_page_capture_url"` // 主页截图链接
- PlatformInfo *InfoThirdPlatform `orm:"with:platform_id=platform_id"`
- }
- type AddAccountReq struct {
- PlatformId int `json:"platform_id"` // 平台id
- //Nickname string `json:"nick_name"` // 废弃,不填写
- HomePageUrl string `json:"home_page_url"` // 主页链接
- HomePageCaptureUrl string `json:"home_page_capture_url"` // 主页截图链接
- PlatformInfo *InfoThirdPlatform `orm:"with:platform_id=platform_id"`
- }
|