fix products listing
This commit is contained in:
26
app/model/dbmodel/ps_customer_group.go
Normal file
26
app/model/dbmodel/ps_customer_group.go
Normal file
@@ -0,0 +1,26 @@
|
||||
// Code generated by gormcol. DO NOT EDIT.
|
||||
|
||||
package dbmodel
|
||||
|
||||
import "git.ma-al.com/goc_marek/gormcol"
|
||||
|
||||
const TableNamePsCustomerGroup = "ps_customer_group"
|
||||
|
||||
// PsCustomerGroup mapped from table <ps_customer_group>
|
||||
type PsCustomerGroup struct {
|
||||
IDCustomer int32 `gorm:"column:id_customer;primaryKey;index:id_customer,priority:1" json:"id_customer"`
|
||||
IDGroup int32 `gorm:"column:id_group;primaryKey;index:customer_login,priority:1" json:"id_group"`
|
||||
}
|
||||
|
||||
// TableName PsCustomerGroup's table name
|
||||
func (*PsCustomerGroup) TableName() string {
|
||||
return TableNamePsCustomerGroup
|
||||
}
|
||||
|
||||
var PsCustomerGroupCols = struct {
|
||||
IDCustomer gormcol.Field
|
||||
IDGroup gormcol.Field
|
||||
}{
|
||||
IDCustomer: gormcol.Field{}.Set((&PsCustomerGroup{}).TableName(), "id_customer"),
|
||||
IDGroup: gormcol.Field{}.Set((&PsCustomerGroup{}).TableName(), "id_group"),
|
||||
}
|
||||
Reference in New Issue
Block a user