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

20 lines
647 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 TableNamePsModuleCountry = "ps_module_country"
// PsModuleCountry mapped from table <ps_module_country>
type PsModuleCountry struct {
IDModule int32 `gorm:"column:id_module;primaryKey" json:"id_module"`
IDShop int32 `gorm:"column:id_shop;primaryKey;default:1" json:"id_shop"`
IDCountry int32 `gorm:"column:id_country;primaryKey" json:"id_country"`
}
// TableName PsModuleCountry's table name
func (*PsModuleCountry) TableName() string {
return TableNamePsModuleCountry
}