// 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 TableNameMapSolarSystemJump = "mapSolarSystemJumps" // MapSolarSystemJump mapped from table type MapSolarSystemJump struct { FromRegionID int32 `gorm:"column:fromRegionID;type:INTEGER" json:"fromRegionID"` FromConstellationID int32 `gorm:"column:fromConstellationID;type:INTEGER" json:"fromConstellationID"` FromSolarSystemID int32 `gorm:"column:fromSolarSystemID;type:INTEGER" json:"fromSolarSystemID"` ToSolarSystemID int32 `gorm:"column:toSolarSystemID;type:INTEGER" json:"toSolarSystemID"` ToConstellationID int32 `gorm:"column:toConstellationID;type:INTEGER" json:"toConstellationID"` ToRegionID int32 `gorm:"column:toRegionID;type:INTEGER" json:"toRegionID"` } // TableName MapSolarSystemJump's table name func (*MapSolarSystemJump) TableName() string { return TableNameMapSolarSystemJump }