Files
zkill-susser/models/invgroups.gen.go
2026-01-05 16:18:18 +01:00

26 lines
1.0 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;primaryKey" json:"groupID"`
CategoryID int32 `gorm:"column:categoryID" json:"categoryID"`
GroupName string `gorm:"column:groupName" json:"groupName"`
IconID int32 `gorm:"column:iconID" json:"iconID"`
UseBasePrice bool `gorm:"column:useBasePrice" json:"useBasePrice"`
Anchored bool `gorm:"column:anchored" json:"anchored"`
Anchorable bool `gorm:"column:anchorable" json:"anchorable"`
FittableNonSingleton bool `gorm:"column:fittableNonSingleton" json:"fittableNonSingleton"`
Published bool `gorm:"column:published" json:"published"`
}
// TableName InvGroup's table name
func (*InvGroup) TableName() string {
return TableNameInvGroup
}