coop_platform.go 342 B

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