mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
26 lines
722 B
Go
26 lines
722 B
Go
package entities
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Purchase struct {
|
|
Id uint `gorm:"primaryKey;autoIncrement"`
|
|
PrNumber string `gorm:"not null"`
|
|
PoNumber *string
|
|
PoDate *time.Time
|
|
SupplierId uint `gorm:"not null"`
|
|
DueDate *time.Time
|
|
Notes *string
|
|
CreatedAt time.Time `gorm:"autoCreateTime"`
|
|
UpdatedAt time.Time `gorm:"autoUpdateTime"`
|
|
DeletedAt *time.Time `gorm:"index"`
|
|
CreatedBy uint `gorm:"not null"`
|
|
|
|
// Relations
|
|
Supplier Supplier `gorm:"foreignKey:SupplierId;references:Id"`
|
|
Items []PurchaseItem `gorm:"foreignKey:PurchaseId"`
|
|
CreatedUser User `gorm:"foreignKey:CreatedBy;references:Id"`
|
|
LatestApproval *Approval `gorm:"-" json:"-"`
|
|
}
|