19 lines
502 B
Go
19 lines
502 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 TableNameInvVolume = "invVolumes"
|
|
|
|
// InvVolume mapped from table <invVolumes>
|
|
type InvVolume struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
Volume int32 `gorm:"column:volume;type:INTEGER" json:"volume"`
|
|
}
|
|
|
|
// TableName InvVolume's table name
|
|
func (*InvVolume) TableName() string {
|
|
return TableNameInvVolume
|
|
}
|