mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
9b016dc30a
- Extend DB schema for stock transfers - Build stock transfer API (create,)
13 lines
439 B
Go
13 lines
439 B
Go
package entities
|
|
|
|
// PIVOT TABLE TRANSFER
|
|
type StockTransferDeliveryItem struct {
|
|
Id uint64 `gorm:"primaryKey;autoIncrement"`
|
|
StockTransferDeliveryId uint64
|
|
StockTransferDetailId uint64
|
|
Quantity float64
|
|
// Relations
|
|
StockTransferDelivery *StockTransferDelivery `gorm:"foreignKey:StockTransferDeliveryId"`
|
|
StockTransferDetail *StockTransferDetail `gorm:"foreignKey:StockTransferDetailId"`
|
|
}
|