32 lines
1.5 KiB
Go
32 lines
1.5 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;type:INTEGER" json:"itemID"`
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
GroupID int32 `gorm:"column:groupID;type:INTEGER" json:"groupID"`
|
|
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"`
|
|
OrbitID int32 `gorm:"column:orbitID;type:INTEGER" json:"orbitID"`
|
|
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"`
|
|
Radius float32 `gorm:"column:radius;type:FLOAT" json:"radius"`
|
|
ItemName string `gorm:"column:itemName;type:VARCHAR(100)" json:"itemName"`
|
|
Security float32 `gorm:"column:security;type:FLOAT" json:"security"`
|
|
CelestialIndex int32 `gorm:"column:celestialIndex;type:INTEGER" json:"celestialIndex"`
|
|
OrbitIndex int32 `gorm:"column:orbitIndex;type:INTEGER" json:"orbitIndex"`
|
|
}
|
|
|
|
// TableName MapDenormalize's table name
|
|
func (*MapDenormalize) TableName() string {
|
|
return TableNameMapDenormalize
|
|
}
|