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,32 @@
// Code generated by gormcol. DO NOT EDIT.
package dbmodel
import (
"git.ma-al.com/goc_marek/gormcol"
"time"
)
const TableNamePsInpostPoint = "ps_inpost_point"
// PsInpostPoint mapped from table <ps_inpost_point>
type PsInpostPoint struct {
IDPoint string `gorm:"column:id_point;primaryKey" json:"id_point"`
Data string `gorm:"column:data;not null" json:"data"`
DateUpd time.Time `gorm:"column:date_upd;not null" json:"date_upd"`
}
// TableName PsInpostPoint's table name
func (*PsInpostPoint) TableName() string {
return TableNamePsInpostPoint
}
var PsInpostPointCols = struct {
IDPoint gormcol.Field
Data gormcol.Field
DateUpd gormcol.Field
}{
IDPoint: gormcol.Field{}.Set((&PsInpostPoint{}).TableName(), "id_point"),
Data: gormcol.Field{}.Set((&PsInpostPoint{}).TableName(), "data"),
DateUpd: gormcol.Field{}.Set((&PsInpostPoint{}).TableName(), "date_upd"),
}