info_tables.go 631 B

12345678910111213141516171819
  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. Bank []model.InfoBank
  10. MessageInfo []model.InfoMessage
  11. }
  12. type ThirdPlatformInfo struct {
  13. PlatformId int `orm:"platform_id,primary" json:"id"` //
  14. PlatformIcon string `orm:"platform_icon" json:"platform_icon"` // 平台图标url
  15. PlatformName string `orm:"platform_name" json:"platform_name"` //
  16. }