fix products listing

This commit is contained in:
2026-03-27 23:17:21 +01:00
parent ec05101037
commit 9ec329b1d6
429 changed files with 9816 additions and 3774 deletions

View File

@@ -0,0 +1,44 @@
// Code generated by gormcol. DO NOT EDIT.
package dbmodel
import (
"git.ma-al.com/goc_marek/gormcol"
"time"
)
const TableNamePsMaalEvent = "ps_maal_events"
// PsMaalEvent mapped from table <ps_maal_events>
type PsMaalEvent struct {
IDEvent int32 `gorm:"column:id_event;primaryKey;autoIncrement:true" json:"id_event"`
Gallery *string `gorm:"column:gallery" json:"gallery"`
PostImg *string `gorm:"column:post_img" json:"post_img"`
Position *int32 `gorm:"column:position" json:"position"`
Active *int32 `gorm:"column:active" json:"active"`
DateAdd *time.Time `gorm:"column:date_add" json:"date_add"`
DateUpd *time.Time `gorm:"column:date_upd" json:"date_upd"`
}
// TableName PsMaalEvent's table name
func (*PsMaalEvent) TableName() string {
return TableNamePsMaalEvent
}
var PsMaalEventCols = struct {
IDEvent gormcol.Field
Gallery gormcol.Field
PostImg gormcol.Field
Position gormcol.Field
Active gormcol.Field
DateAdd gormcol.Field
DateUpd gormcol.Field
}{
IDEvent: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "id_event"),
Gallery: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "gallery"),
PostImg: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "post_img"),
Position: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "position"),
Active: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "active"),
DateAdd: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "date_add"),
DateUpd: gormcol.Field{}.Set((&PsMaalEvent{}).TableName(), "date_upd"),
}