Files
zkill-susser/models/mapdenormalize.gen.go
2026-01-05 16:18:18 +01:00

32 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 TableNameMapDenormalize = "mapDenormalize"
// MapDenormalize mapped from table <mapDenormalize>
type MapDenormalize struct {
ItemID int32 `gorm:"column:itemID;primaryKey" json:"itemID"`
TypeID int32 `gorm:"column:typeID" json:"typeID"`
GroupID int32 `gorm:"column:groupID" json:"groupID"`
SolarSystemID int32 `gorm:"column:solarSystemID" json:"solarSystemID"`
ConstellationID int32 `gorm:"column:constellationID" json:"constellationID"`
RegionID int32 `gorm:"column:regionID" json:"regionID"`
OrbitID int32 `gorm:"column:orbitID" json:"orbitID"`
X float64 `gorm:"column:x" json:"x"`
Y float64 `gorm:"column:y" json:"y"`
Z float64 `gorm:"column:z" json:"z"`
Radius float64 `gorm:"column:radius" json:"radius"`
ItemName string `gorm:"column:itemName" json:"itemName"`
Security float64 `gorm:"column:security" json:"security"`
CelestialIndex int32 `gorm:"column:celestialIndex" json:"celestialIndex"`
OrbitIndex int32 `gorm:"column:orbitIndex" json:"orbitIndex"`
}
// TableName MapDenormalize's table name
func (*MapDenormalize) TableName() string {
return TableNameMapDenormalize
}