// 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 TableNameInvItem = "invItems" // InvItem mapped from table type InvItem struct { ItemID int32 `gorm:"column:itemID;type:INTEGER" json:"itemID"` TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"` OwnerID int32 `gorm:"column:ownerID;type:INTEGER" json:"ownerID"` LocationID int32 `gorm:"column:locationID;type:INTEGER" json:"locationID"` FlagID int32 `gorm:"column:flagID;type:INTEGER" json:"flagID"` Quantity int32 `gorm:"column:quantity;type:INTEGER" json:"quantity"` } // TableName InvItem's table name func (*InvItem) TableName() string { return TableNameInvItem }