23 lines
512 B
Go
23 lines
512 B
Go
|
package app
|
||
|
|
||
|
// Total is a DB object
|
||
|
type Total struct {
|
||
|
ID string
|
||
|
TotalItems map[string]*TotalItem
|
||
|
Amount float64
|
||
|
BusinessTax float64
|
||
|
BusinessTaxRate float64
|
||
|
CannabisTax float64
|
||
|
CannabisTaxRate float64
|
||
|
MonthlyAmount float64
|
||
|
ObjectType string
|
||
|
PurchaseAmount float64
|
||
|
SalesTax float64
|
||
|
SalesTaxRate float64
|
||
|
ShippingHandling float64
|
||
|
Subtotal float64
|
||
|
TelecomTax float64
|
||
|
TelecomTaxRate float64
|
||
|
TenantID string
|
||
|
}
|