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