info_tables.go 732 B

12345678910111213141516171819202122232425
  1. package talent_model
  2. import "youngmini_server/app/model"
  3. type InfoTables struct {
  4. ProductClassify []model.InfoProductClassify
  5. AgeBracket []model.InfoTalentAgeBracket
  6. SkilledArea []model.InfoTalentSkilledArea
  7. SkinType []model.InfoTalentSkinType
  8. ThirdPlatform []ThirdPlatformInfo
  9. }
  10. //type InfoTables struct {
  11. // ProductClassify map[int]g.Map
  12. // AgeBracket map[int]g.Map
  13. // SkilledArea map[int]g.Map
  14. // SkinType map[int]g.Map
  15. // ThirdPlatform map[int]g.Map
  16. //}
  17. type ThirdPlatformInfo struct {
  18. PlatformId int `orm:"platform_id,primary" json:"id"` //
  19. PlatformIcon string `orm:"platform_icon" json:"platformIcon"` // 平台图标url
  20. PlatformName string `orm:"platform_name" json:"platformName"` //
  21. }