info_tables.go 671 B

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