info_third_platform.go 583 B

1234567891011121314
  1. package gorm_model
  2. // Code generated by sql2gorm. DO NOT EDIT.
  3. type InfoThirdPlatform struct {
  4. PlatformID int `gorm:"column:platform_id;primary_key;AUTO_INCREMENT"` // 平台id,主键
  5. PlatformName string `gorm:"column:platform_name;NOT NULL"` // 平台名
  6. PlatformIcon string `gorm:"column:platform_icon;NOT NULL"` // 平台图标url
  7. PlatformTableName string `gorm:"column:platform_table_name;NOT NULL"` // 平台数据表表名
  8. }
  9. func (m *InfoThirdPlatform) TableName() string {
  10. return "info_third_platform"
  11. }