lib/app/totaltaxitem.go

18 lines
391 B
Go

package app
import "code.tnxs.net/taxnexus/lib/api/ops/ops_models"
// TotalTaxItemChannelWrapper wraps the object with the security principal
type TotalTaxItemChannelWrapper struct {
Obj ops_models.TotalTaxItem
Principal User
}
// TotalTaxItem is a DB struct
type TotalTaxItem struct {
ID string
TotalItem string
TaxTransaction string
TenantID string
}