21 lines
728 B
Go
21 lines
728 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 TableNameInvTypeReaction = "invTypeReactions"
|
|
|
|
// InvTypeReaction mapped from table <invTypeReactions>
|
|
type InvTypeReaction struct {
|
|
ReactionTypeID int32 `gorm:"column:reactionTypeID;type:INTEGER" json:"reactionTypeID"`
|
|
Input bool `gorm:"column:input;type:BOOLEAN" json:"input"`
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
Quantity int32 `gorm:"column:quantity;type:INTEGER" json:"quantity"`
|
|
}
|
|
|
|
// TableName InvTypeReaction's table name
|
|
func (*InvTypeReaction) TableName() string {
|
|
return TableNameInvTypeReaction
|
|
}
|