21 lines
646 B
Go
21 lines
646 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 TableNameInvFlag = "invFlags"
|
|
|
|
// InvFlag mapped from table <invFlags>
|
|
type InvFlag struct {
|
|
FlagID int32 `gorm:"column:flagID;type:INTEGER" json:"flagID"`
|
|
FlagName string `gorm:"column:flagName;type:VARCHAR(200)" json:"flagName"`
|
|
FlagText string `gorm:"column:flagText;type:VARCHAR(100)" json:"flagText"`
|
|
OrderID int32 `gorm:"column:orderID;type:INTEGER" json:"orderID"`
|
|
}
|
|
|
|
// TableName InvFlag's table name
|
|
func (*InvFlag) TableName() string {
|
|
return TableNameInvFlag
|
|
}
|