Files
eve-typesense-mirrorer/models/invgroups.gen.go
2026-01-09 09:00:09 +01:00

26 lines
1.1 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 TableNameInvGroup = "invGroups"
// InvGroup mapped from table <invGroups>
type InvGroup struct {
GroupID int32 `gorm:"column:groupID;type:INTEGER" json:"groupID"`
CategoryID int32 `gorm:"column:categoryID;type:INTEGER" json:"categoryID"`
GroupName string `gorm:"column:groupName;type:VARCHAR(100)" json:"groupName"`
IconID int32 `gorm:"column:iconID;type:INTEGER" json:"iconID"`
UseBasePrice bool `gorm:"column:useBasePrice;type:BOOLEAN" json:"useBasePrice"`
Anchored bool `gorm:"column:anchored;type:BOOLEAN" json:"anchored"`
Anchorable bool `gorm:"column:anchorable;type:BOOLEAN" json:"anchorable"`
FittableNonSingleton bool `gorm:"column:fittableNonSingleton;type:BOOLEAN" json:"fittableNonSingleton"`
Published bool `gorm:"column:published;type:BOOLEAN" json:"published"`
}
// TableName InvGroup's table name
func (*InvGroup) TableName() string {
return TableNameInvGroup
}