21 lines
796 B
Go
21 lines
796 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 TableNameIndustryActivityProduct = "industryActivityProducts"
|
|
|
|
// IndustryActivityProduct mapped from table <industryActivityProducts>
|
|
type IndustryActivityProduct struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
ActivityID int32 `gorm:"column:activityID;type:INTEGER" json:"activityID"`
|
|
ProductTypeID int32 `gorm:"column:productTypeID;type:INTEGER" json:"productTypeID"`
|
|
Quantity int32 `gorm:"column:quantity;type:INTEGER" json:"quantity"`
|
|
}
|
|
|
|
// TableName IndustryActivityProduct's table name
|
|
func (*IndustryActivityProduct) TableName() string {
|
|
return TableNameIndustryActivityProduct
|
|
}
|