Files
zkill-susser/models/stastationtypes.gen.go

28 lines
1.4 KiB
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 TableNameStaStationType = "staStationTypes"
// StaStationType mapped from table <staStationTypes>
type StaStationType struct {
StationTypeID int32 `gorm:"column:stationTypeID;type:INTEGER" json:"stationTypeID"`
DockEntryX float32 `gorm:"column:dockEntryX;type:FLOAT" json:"dockEntryX"`
DockEntryY float32 `gorm:"column:dockEntryY;type:FLOAT" json:"dockEntryY"`
DockEntryZ float32 `gorm:"column:dockEntryZ;type:FLOAT" json:"dockEntryZ"`
DockOrientationX float32 `gorm:"column:dockOrientationX;type:FLOAT" json:"dockOrientationX"`
DockOrientationY float32 `gorm:"column:dockOrientationY;type:FLOAT" json:"dockOrientationY"`
DockOrientationZ float32 `gorm:"column:dockOrientationZ;type:FLOAT" json:"dockOrientationZ"`
OperationID int32 `gorm:"column:operationID;type:INTEGER" json:"operationID"`
OfficeSlots int32 `gorm:"column:officeSlots;type:INTEGER" json:"officeSlots"`
ReprocessingEfficiency float32 `gorm:"column:reprocessingEfficiency;type:FLOAT" json:"reprocessingEfficiency"`
Conquerable bool `gorm:"column:conquerable;type:BOOLEAN" json:"conquerable"`
}
// TableName StaStationType's table name
func (*StaStationType) TableName() string {
return TableNameStaStationType
}