20 lines
636 B
Go
20 lines
636 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 TableNameIndustryActivity = "industryActivity"
|
|
|
|
// IndustryActivity mapped from table <industryActivity>
|
|
type IndustryActivity struct {
|
|
TypeID int32 `gorm:"column:typeID;type:INTEGER" json:"typeID"`
|
|
ActivityID int32 `gorm:"column:activityID;type:INTEGER" json:"activityID"`
|
|
Time int32 `gorm:"column:time;type:INTEGER" json:"time"`
|
|
}
|
|
|
|
// TableName IndustryActivity's table name
|
|
func (*IndustryActivity) TableName() string {
|
|
return TableNameIndustryActivity
|
|
}
|