account_info.go 497 B

12345678910
  1. package common_model
  2. type AccountInfoConditions struct {
  3. PlatformID int64 `condition:"platform_id"` // 平台
  4. BindDate string `condition:"bind_date"` // 绑定时间
  5. FansLow int64 `condition:"fans_low"` // 最低粉丝数
  6. FansHigh int64 `condition:"fans_high"` // 最高粉丝数
  7. TalentId string `condition:"talent_id"` // 创作者ID
  8. PlatformNickname string `condition:"platform_nickname"` // 平台昵称
  9. }