33 lines
1.3 KiB
Go
33 lines
1.3 KiB
Go
// Code generated by gormcol. DO NOT EDIT.
|
|
|
|
package dbmodel
|
|
|
|
import "git.ma-al.com/goc_marek/gormcol"
|
|
|
|
const TableNamePsAttributeGroupLang = "ps_attribute_group_lang"
|
|
|
|
// PsAttributeGroupLang mapped from table <ps_attribute_group_lang>
|
|
type PsAttributeGroupLang struct {
|
|
IDAttributeGroup int32 `gorm:"column:id_attribute_group;primaryKey;index:IDX_4653726C67A664FB,priority:1" json:"id_attribute_group"`
|
|
IDLang int32 `gorm:"column:id_lang;primaryKey;index:IDX_4653726CBA299860,priority:1" json:"id_lang"`
|
|
Name string `gorm:"column:name;not null" json:"name"`
|
|
PublicName string `gorm:"column:public_name;not null" json:"public_name"`
|
|
}
|
|
|
|
// TableName PsAttributeGroupLang's table name
|
|
func (*PsAttributeGroupLang) TableName() string {
|
|
return TableNamePsAttributeGroupLang
|
|
}
|
|
|
|
var PsAttributeGroupLangCols = struct {
|
|
IDAttributeGroup gormcol.Field
|
|
IDLang gormcol.Field
|
|
Name gormcol.Field
|
|
PublicName gormcol.Field
|
|
}{
|
|
IDAttributeGroup: gormcol.Field{}.Set((&PsAttributeGroupLang{}).TableName(), "id_attribute_group"),
|
|
IDLang: gormcol.Field{}.Set((&PsAttributeGroupLang{}).TableName(), "id_lang"),
|
|
Name: gormcol.Field{}.Set((&PsAttributeGroupLang{}).TableName(), "name"),
|
|
PublicName: gormcol.Field{}.Set((&PsAttributeGroupLang{}).TableName(), "public_name"),
|
|
}
|