46 lines
2.4 KiB
Go
46 lines
2.4 KiB
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 TableNamePsAddress = "ps_address"
|
|
|
|
// PsAddress mapped from table <ps_address>
|
|
type PsAddress struct {
|
|
IDAddress int32 `gorm:"column:id_address;primaryKey;autoIncrement:true" json:"id_address"`
|
|
IDCountry int32 `gorm:"column:id_country;not null;index:id_country,priority:1" json:"id_country"`
|
|
IDState *int32 `gorm:"column:id_state;index:id_state,priority:1" json:"id_state"`
|
|
IDCustomer int32 `gorm:"column:id_customer;not null;index:address_customer,priority:1" json:"id_customer"`
|
|
IDManufacturer int32 `gorm:"column:id_manufacturer;not null;index:id_manufacturer,priority:1" json:"id_manufacturer"`
|
|
IDSupplier int32 `gorm:"column:id_supplier;not null;index:id_supplier,priority:1" json:"id_supplier"`
|
|
IDWarehouse int32 `gorm:"column:id_warehouse;not null;index:id_warehouse,priority:1" json:"id_warehouse"`
|
|
Alias string `gorm:"column:alias;not null" json:"alias"`
|
|
Company *string `gorm:"column:company" json:"company"`
|
|
Lastname string `gorm:"column:lastname;not null" json:"lastname"`
|
|
Firstname string `gorm:"column:firstname;not null" json:"firstname"`
|
|
Address1 string `gorm:"column:address1;not null" json:"address1"`
|
|
Address2 *string `gorm:"column:address2" json:"address2"`
|
|
Postcode *string `gorm:"column:postcode" json:"postcode"`
|
|
City string `gorm:"column:city;not null" json:"city"`
|
|
Other *string `gorm:"column:other" json:"other"`
|
|
Phone *string `gorm:"column:phone" json:"phone"`
|
|
PhoneMobile *string `gorm:"column:phone_mobile" json:"phone_mobile"`
|
|
VatNumber *string `gorm:"column:vat_number" json:"vat_number"`
|
|
Dni *string `gorm:"column:dni" json:"dni"`
|
|
DateAdd time.Time `gorm:"column:date_add;not null" json:"date_add"`
|
|
DateUpd time.Time `gorm:"column:date_upd;not null" json:"date_upd"`
|
|
Active bool `gorm:"column:active;not null;default:1" json:"active"`
|
|
Deleted bool `gorm:"column:deleted;not null" json:"deleted"`
|
|
IsNovat int32 `gorm:"column:is_novat;not null" json:"is_novat"`
|
|
}
|
|
|
|
// TableName PsAddress's table name
|
|
func (*PsAddress) TableName() string {
|
|
return TableNamePsAddress
|
|
}
|