17 lines
340 B
Go
17 lines
340 B
Go
|
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
|
||
|
}
|