// 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 TableNameStaStation = "staStations" // StaStation mapped from table type StaStation struct { StationID int64 `gorm:"column:stationID;type:BIGINT" json:"stationID"` Security float32 `gorm:"column:security;type:FLOAT" json:"security"` DockingCostPerVolume float32 `gorm:"column:dockingCostPerVolume;type:FLOAT" json:"dockingCostPerVolume"` MaxShipVolumeDockable float32 `gorm:"column:maxShipVolumeDockable;type:FLOAT" json:"maxShipVolumeDockable"` OfficeRentalCost int32 `gorm:"column:officeRentalCost;type:INTEGER" json:"officeRentalCost"` OperationID int32 `gorm:"column:operationID;type:INTEGER" json:"operationID"` StationTypeID int32 `gorm:"column:stationTypeID;type:INTEGER" json:"stationTypeID"` CorporationID int32 `gorm:"column:corporationID;type:INTEGER" json:"corporationID"` SolarSystemID int32 `gorm:"column:solarSystemID;type:INTEGER" json:"solarSystemID"` ConstellationID int32 `gorm:"column:constellationID;type:INTEGER" json:"constellationID"` RegionID int32 `gorm:"column:regionID;type:INTEGER" json:"regionID"` StationName string `gorm:"column:stationName;type:VARCHAR(100)" json:"stationName"` X float32 `gorm:"column:x;type:FLOAT" json:"x"` Y float32 `gorm:"column:y;type:FLOAT" json:"y"` Z float32 `gorm:"column:z;type:FLOAT" json:"z"` ReprocessingEfficiency float32 `gorm:"column:reprocessingEfficiency;type:FLOAT" json:"reprocessingEfficiency"` ReprocessingStationsTake float32 `gorm:"column:reprocessingStationsTake;type:FLOAT" json:"reprocessingStationsTake"` ReprocessingHangarFlag int32 `gorm:"column:reprocessingHangarFlag;type:INTEGER" json:"reprocessingHangarFlag"` } // TableName StaStation's table name func (*StaStation) TableName() string { return TableNameStaStation }