platform_acc_info.go 911 B

12345678910111213141516171819202122232425262728
  1. package http_model
  2. type PlatformAccInfoRequest struct {
  3. TalentId string `json:"talent_id"`
  4. }
  5. type PlatformAccInfoData struct {
  6. Platform string `json:"platform"` //社媒平台
  7. PlatformNickname string `json:"platform_nickname"` //账号昵称
  8. Fans string `json:"fans"` //粉丝量
  9. HomePageCaptureUrl string `json:"home_page_capture_url"` //主页截图链接
  10. HomePageUrl string `json:"home_page_url"` //主页链接
  11. }
  12. type PlatformAccInfoPreView struct {
  13. PlatformAccInfoData []*PlatformAccInfoData `json:"platform_acc_info_data"`
  14. Total string `json:"total"`
  15. }
  16. func NewPlatformAccInfoRequest() *PlatformAccInfoRequest {
  17. return new(PlatformAccInfoRequest)
  18. }
  19. func NewPlatformAccInfoResponse() *CommonResponse {
  20. resp := new(CommonResponse)
  21. resp.Data = new(PlatformAccInfoPreView)
  22. return resp
  23. }