add models generation and josn print
This commit is contained in:
21
app/model/prestadb/ps_hook_module_exceptions.go
Normal file
21
app/model/prestadb/ps_hook_module_exceptions.go
Normal file
@@ -0,0 +1,21 @@
|
||||
// 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
|
||||
}
|
||||
Reference in New Issue
Block a user