23 lines
946 B
Go
23 lines
946 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 TableNameInvContrabandType = "invContrabandTypes"
|
|
|
|
// InvContrabandType mapped from table <invContrabandTypes>
|
|
type InvContrabandType struct {
|
|
FactionID int32 `gorm:"column:factionID;type:INTEGER" json:"factionID"`
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
StandingLoss float32 `gorm:"column:standingLoss;type:FLOAT" json:"standingLoss"`
|
|
ConfiscateMinSec float32 `gorm:"column:confiscateMinSec;type:FLOAT" json:"confiscateMinSec"`
|
|
FineByValue float32 `gorm:"column:fineByValue;type:FLOAT" json:"fineByValue"`
|
|
AttackMinSec float32 `gorm:"column:attackMinSec;type:FLOAT" json:"attackMinSec"`
|
|
}
|
|
|
|
// TableName InvContrabandType's table name
|
|
func (*InvContrabandType) TableName() string {
|
|
return TableNameInvContrabandType
|
|
}
|