31 lines
1.7 KiB
Go
31 lines
1.7 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 TableNameStaOperation = "staOperations"
|
|
|
|
// StaOperation mapped from table <staOperations>
|
|
type StaOperation struct {
|
|
ActivityID int32 `gorm:"column:activityID;type:INTEGER" json:"activityID"`
|
|
OperationID int32 `gorm:"column:operationID;type:INTEGER" json:"operationID"`
|
|
OperationName string `gorm:"column:operationName;type:VARCHAR(100)" json:"operationName"`
|
|
Description string `gorm:"column:description;type:VARCHAR(1000)" json:"description"`
|
|
Fringe int32 `gorm:"column:fringe;type:INTEGER" json:"fringe"`
|
|
Corridor int32 `gorm:"column:corridor;type:INTEGER" json:"corridor"`
|
|
Hub int32 `gorm:"column:hub;type:INTEGER" json:"hub"`
|
|
Border int32 `gorm:"column:border;type:INTEGER" json:"border"`
|
|
Ratio int32 `gorm:"column:ratio;type:INTEGER" json:"ratio"`
|
|
CaldariStationTypeID int32 `gorm:"column:caldariStationTypeID;type:INTEGER" json:"caldariStationTypeID"`
|
|
MinmatarStationTypeID int32 `gorm:"column:minmatarStationTypeID;type:INTEGER" json:"minmatarStationTypeID"`
|
|
AmarrStationTypeID int32 `gorm:"column:amarrStationTypeID;type:INTEGER" json:"amarrStationTypeID"`
|
|
GallenteStationTypeID int32 `gorm:"column:gallenteStationTypeID;type:INTEGER" json:"gallenteStationTypeID"`
|
|
JoveStationTypeID int32 `gorm:"column:joveStationTypeID;type:INTEGER" json:"joveStationTypeID"`
|
|
}
|
|
|
|
// TableName StaOperation's table name
|
|
func (*StaOperation) TableName() string {
|
|
return TableNameStaOperation
|
|
}
|