20 lines
617 B
Go
20 lines
617 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 TableNameDgmTypeEffect = "dgmTypeEffects"
|
|
|
|
// DgmTypeEffect mapped from table <dgmTypeEffects>
|
|
type DgmTypeEffect struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
EffectID int32 `gorm:"column:effectID;type:INTEGER" json:"effectID"`
|
|
IsDefault bool `gorm:"column:isDefault;type:BOOLEAN" json:"isDefault"`
|
|
}
|
|
|
|
// TableName DgmTypeEffect's table name
|
|
func (*DgmTypeEffect) TableName() string {
|
|
return TableNameDgmTypeEffect
|
|
}
|