19 lines
622 B
Go
19 lines
622 B
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 TableNameWarCombatZoneSystem = "warCombatZoneSystems"
|
|
|
|
// WarCombatZoneSystem mapped from table <warCombatZoneSystems>
|
|
type WarCombatZoneSystem struct {
|
|
SolarSystemID int32 `gorm:"column:solarSystemID;type:INTEGER" json:"solarSystemID"`
|
|
CombatZoneID int32 `gorm:"column:combatZoneID;type:INTEGER" json:"combatZoneID"`
|
|
}
|
|
|
|
// TableName WarCombatZoneSystem's table name
|
|
func (*WarCombatZoneSystem) TableName() string {
|
|
return TableNameWarCombatZoneSystem
|
|
}
|