You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
18 lines
748 B
Go
18 lines
748 B
Go
|
|
package models
|
||
|
|
|
||
|
|
// Split represents a single entry in a transaction
|
||
|
|
type Split struct {
|
||
|
|
ID uint `gorm:"primaryKey;autoIncrement"`
|
||
|
|
TransactionID []byte `gorm:"column:transactionId;type:BINARY(16);not null"`
|
||
|
|
AccountID []byte `gorm:"column:accountId;type:BINARY(16);not null"`
|
||
|
|
Date uint64 `gorm:"column:date;not null"`
|
||
|
|
Inserted uint64 `gorm:"column:inserted;not null"`
|
||
|
|
Updated uint64 `gorm:"column:updated;not null"`
|
||
|
|
Amount int64 `gorm:"column:amount;not null"`
|
||
|
|
NativeAmount int64 `gorm:"column:nativeAmount;not null"`
|
||
|
|
Deleted bool `gorm:"column:deleted;default:false"`
|
||
|
|
|
||
|
|
Transaction Transaction `gorm:"foreignKey:TransactionID"`
|
||
|
|
Account Account `gorm:"foreignKey:AccountID"`
|
||
|
|
}
|