Files
b2b/app/model/prestadb/ps_hook_module_exceptions.go

22 lines
996 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 TableNamePsHookModuleException = "ps_hook_module_exceptions"
// PsHookModuleException mapped from table <ps_hook_module_exceptions>
type PsHookModuleException struct {
IDHookModuleExceptions int32 `gorm:"column:id_hook_module_exceptions;primaryKey;autoIncrement:true" json:"id_hook_module_exceptions"`
IDShop int32 `gorm:"column:id_shop;not null;default:1" json:"id_shop"`
IDModule int32 `gorm:"column:id_module;not null;index:id_module,priority:1" json:"id_module"`
IDHook int32 `gorm:"column:id_hook;not null;index:id_hook,priority:1" json:"id_hook"`
FileName *string `gorm:"column:file_name" json:"file_name"`
}
// TableName PsHookModuleException's table name
func (*PsHookModuleException) TableName() string {
return TableNamePsHookModuleException
}