12345678910111213141516171819 |
- package youngee_talent_model
- import "youngmini_server/app/model"
- type InfoTables struct {
- ProductType []model.InfoProductType
- AgeBracket []model.InfoTalentAgeBracket
- SkilledArea []model.InfoTalentSkilledArea
- ThirdPlatform []ThirdPlatformInfo
- TaskStage []model.InfoTaskStage
- Bank []model.InfoBank
- MessageInfo []model.InfoMessage
- }
- type ThirdPlatformInfo struct {
- PlatformId int `orm:"platform_id,primary" json:"id"` //
- PlatformIcon string `orm:"platform_icon" json:"platform_icon"` // 平台图标url
- PlatformName string `orm:"platform_name" json:"platform_name"` //
- }
|