Files
zkill-susser/models/chrattributes.gen.go

23 lines
921 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 TableNameChrAttribute = "chrAttributes"
// ChrAttribute mapped from table <chrAttributes>
type ChrAttribute struct {
AttributeID int32 `gorm:"column:attributeID;type:INTEGER" json:"attributeID"`
AttributeName string `gorm:"column:attributeName;type:VARCHAR(100)" json:"attributeName"`
Description string `gorm:"column:description;type:VARCHAR(1000)" json:"description"`
IconID int32 `gorm:"column:iconID;type:INTEGER" json:"iconID"`
ShortDescription string `gorm:"column:shortDescription;type:VARCHAR(500)" json:"shortDescription"`
Notes string `gorm:"column:notes;type:VARCHAR(500)" json:"notes"`
}
// TableName ChrAttribute's table name
func (*ChrAttribute) TableName() string {
return TableNameChrAttribute
}