info_tables.go 539 B

12345678910111213141516
  1. package youngee_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. ThirdPlatform []ThirdPlatformInfo
  8. }
  9. type ThirdPlatformInfo struct {
  10. PlatformId int `orm:"platform_id,primary" json:"id"` //
  11. PlatformIcon string `orm:"platform_icon" json:"platform_icon"` // 平台图标url
  12. PlatformName string `orm:"platform_name" json:"platform_name"` //
  13. }