Files
b2b/app/model/dbmodel/ps_customer_group.go
2026-03-30 01:02:02 +02:00

27 lines
826 B
Go

// 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"),
}