21 lines
810 B
Go
21 lines
810 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 TableNameIndustryActivityMaterial = "industryActivityMaterials"
|
|
|
|
// IndustryActivityMaterial mapped from table <industryActivityMaterials>
|
|
type IndustryActivityMaterial struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
ActivityID int32 `gorm:"column:activityID;type:INTEGER" json:"activityID"`
|
|
MaterialTypeID int32 `gorm:"column:materialTypeID;type:INTEGER" json:"materialTypeID"`
|
|
Quantity int32 `gorm:"column:quantity;type:INTEGER" json:"quantity"`
|
|
}
|
|
|
|
// TableName IndustryActivityMaterial's table name
|
|
func (*IndustryActivityMaterial) TableName() string {
|
|
return TableNameIndustryActivityMaterial
|
|
}
|