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,23 @@
// Code generated by gormcol. DO NOT EDIT.
package dbmodel
import "git.ma-al.com/goc_marek/gormcol"
const TableNamePsCustomerMessageSyncImap = "ps_customer_message_sync_imap"
// PsCustomerMessageSyncImap mapped from table <ps_customer_message_sync_imap>
type PsCustomerMessageSyncImap struct {
Md5Header []byte `gorm:"column:md5_header;not null;index:md5_header_index,priority:1" json:"md5_header"`
}
// TableName PsCustomerMessageSyncImap's table name
func (*PsCustomerMessageSyncImap) TableName() string {
return TableNamePsCustomerMessageSyncImap
}
var PsCustomerMessageSyncImapCols = struct {
Md5Header gormcol.Field
}{
Md5Header: gormcol.Field{}.Set((&PsCustomerMessageSyncImap{}).TableName(), "md5_header"),
}