21 lines
679 B
Go
21 lines
679 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 TableNamePsCmsRoleLang = "ps_cms_role_lang"
|
|
|
|
// PsCmsRoleLang mapped from table <ps_cms_role_lang>
|
|
type PsCmsRoleLang struct {
|
|
IDCmsRole int32 `gorm:"column:id_cms_role;primaryKey" json:"id_cms_role"`
|
|
IDLang int32 `gorm:"column:id_lang;primaryKey" json:"id_lang"`
|
|
IDShop int32 `gorm:"column:id_shop;primaryKey" json:"id_shop"`
|
|
Name *string `gorm:"column:name" json:"name"`
|
|
}
|
|
|
|
// TableName PsCmsRoleLang's table name
|
|
func (*PsCmsRoleLang) TableName() string {
|
|
return TableNamePsCmsRoleLang
|
|
}
|