info_tables.go 564 B

1234567891011121314151617
  1. package youngee_talent_model
  2. import "youngmini_server/app/model"
  3. type InfoTables struct {
  4. ProductType []model.InfoProductType
  5. AgeBracket []model.InfoTalentAgeBracket
  6. SkilledArea []model.InfoTalentSkilledArea
  7. ThirdPlatform []ThirdPlatformInfo
  8. TaskStage []model.InfoTaskStage
  9. }
  10. type ThirdPlatformInfo struct {
  11. PlatformId int `orm:"platform_id,primary" json:"id"` //
  12. PlatformIcon string `orm:"platform_icon" json:"platform_icon"` // 平台图标url
  13. PlatformName string `orm:"platform_name" json:"platform_name"` //
  14. }