Files
gormcol/app/model/dbmodel/ps_customer_group.go

29 lines
926 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 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{Table: TableNamePsCustomerGroup, Column: "id_customer"},
IDGroup: gormcol.Field{Table: TableNamePsCustomerGroup, Column: "id_group"},
}