18 lines
368 B
Go
18 lines
368 B
Go
|
package app
|
||
|
|
||
|
import "database/sql"
|
||
|
|
||
|
// Transaction is a first class object type
|
||
|
type Transaction struct {
|
||
|
ID string
|
||
|
AccountID string
|
||
|
CreatedByID string
|
||
|
CreatedDate sql.NullTime
|
||
|
LastModifiedByID string
|
||
|
LastModifiedDate sql.NullTime
|
||
|
TaxTypeID string
|
||
|
TaxTransactionID string
|
||
|
TenantID string
|
||
|
Valid bool
|
||
|
}
|