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

24 lines
726 B
Go

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