lib/types/eftitem.go

17 lines
340 B
Go
Raw Normal View History

2021-01-10 18:40:46 +00:00
package types
import "database/sql"
// EftItem is a first class object type
type EftItem struct {
ID string
Amount float64
CreatedByID string
CreatedDate sql.NullTime
EftID string
InvoiceID string
LastModifiedByID string
LastModifiedDate sql.NullTime
TenantID string
}