23 lines
929 B
Go
23 lines
929 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 TableNameInvMarketGroup = "invMarketGroups"
|
|
|
|
// InvMarketGroup mapped from table <invMarketGroups>
|
|
type InvMarketGroup struct {
|
|
MarketGroupID int32 `gorm:"column:marketGroupID;type:INTEGER" json:"marketGroupID"`
|
|
ParentGroupID int32 `gorm:"column:parentGroupID;type:INTEGER" json:"parentGroupID"`
|
|
MarketGroupName string `gorm:"column:marketGroupName;type:VARCHAR(100)" json:"marketGroupName"`
|
|
Description string `gorm:"column:description;type:VARCHAR(3000)" json:"description"`
|
|
IconID int32 `gorm:"column:iconID;type:INTEGER" json:"iconID"`
|
|
HasTypes bool `gorm:"column:hasTypes;type:BOOLEAN" json:"hasTypes"`
|
|
}
|
|
|
|
// TableName InvMarketGroup's table name
|
|
func (*InvMarketGroup) TableName() string {
|
|
return TableNameInvMarketGroup
|
|
}
|