// Code generated by sql2gorm. DO NOT EDIT. package entity // 合作平台表 type CoopPlatform struct { ID int64 `gorm:"column:id;primary_key;AUTO_INCREMENT"` // id PlatformIcon string `gorm:"column:platform_icon;NOT NULL"` // 平台icon } func (m *CoopPlatform) TableName() string { return "younggee_coop_platform" }