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

21 lines
734 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 TableNameDgmTypeAttribute = "dgmTypeAttributes"
// DgmTypeAttribute mapped from table <dgmTypeAttributes>
type DgmTypeAttribute struct {
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
AttributeID int32 `gorm:"column:attributeID;type:INTEGER" json:"attributeID"`
ValueInt int32 `gorm:"column:valueInt;type:INTEGER" json:"valueInt"`
ValueFloat float32 `gorm:"column:valueFloat;type:FLOAT" json:"valueFloat"`
}
// TableName DgmTypeAttribute's table name
func (*DgmTypeAttribute) TableName() string {
return TableNameDgmTypeAttribute
}