20 lines
586 B
Go
20 lines
586 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 prestadb
|
|
|
|
const TableNamePsGroupLang = "ps_group_lang"
|
|
|
|
// PsGroupLang mapped from table <ps_group_lang>
|
|
type PsGroupLang struct {
|
|
IDGroup int32 `gorm:"column:id_group;primaryKey" json:"id_group"`
|
|
IDLang int32 `gorm:"column:id_lang;primaryKey" json:"id_lang"`
|
|
Name string `gorm:"column:name;not null" json:"name"`
|
|
}
|
|
|
|
// TableName PsGroupLang's table name
|
|
func (*PsGroupLang) TableName() string {
|
|
return TableNamePsGroupLang
|
|
}
|