20 lines
673 B
Go
20 lines
673 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package models
|
|
|
|
const TableNamePlanetSchematic = "planetSchematics"
|
|
|
|
// PlanetSchematic mapped from table <planetSchematics>
|
|
type PlanetSchematic struct {
|
|
SchematicID int32 `gorm:"column:schematicID;type:INTEGER" json:"schematicID"`
|
|
SchematicName string `gorm:"column:schematicName;type:VARCHAR(255)" json:"schematicName"`
|
|
CycleTime int32 `gorm:"column:cycleTime;type:INTEGER" json:"cycleTime"`
|
|
}
|
|
|
|
// TableName PlanetSchematic's table name
|
|
func (*PlanetSchematic) TableName() string {
|
|
return TableNamePlanetSchematic
|
|
}
|