45 lines
1.5 KiB
Go
45 lines
1.5 KiB
Go
// 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"),
|
|
}
|