27 lines
966 B
Go
27 lines
966 B
Go
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
// Code generated by gorm.io/gen. DO NOT EDIT.
|
|
|
|
package prestadb
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
const TableNamePsPocztapolskaenPostOffice = "ps_pocztapolskaen_post_office"
|
|
|
|
// PsPocztapolskaenPostOffice mapped from table <ps_pocztapolskaen_post_office>
|
|
type PsPocztapolskaenPostOffice struct {
|
|
IDPostOffice int32 `gorm:"column:id_post_office;primaryKey;autoIncrement:true" json:"id_post_office"`
|
|
IDEn *int32 `gorm:"column:id_en" json:"id_en"`
|
|
Name *string `gorm:"column:name" json:"name"`
|
|
Description *string `gorm:"column:description" json:"description"`
|
|
DateAdd *time.Time `gorm:"column:date_add" json:"date_add"`
|
|
DateUpd *time.Time `gorm:"column:date_upd" json:"date_upd"`
|
|
}
|
|
|
|
// TableName PsPocztapolskaenPostOffice's table name
|
|
func (*PsPocztapolskaenPostOffice) TableName() string {
|
|
return TableNamePsPocztapolskaenPostOffice
|
|
}
|