39 lines
883 B
Go
39 lines
883 B
Go
package app
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"code.tnxs.net/taxnexus/lib/api/ledger/ledger_models"
|
|
)
|
|
|
|
// GlAccountChannelWrapper wraps the object with the security principal
|
|
type GlAccountChannelWrapper struct {
|
|
Obj ledger_models.GlAccount
|
|
Principal User
|
|
}
|
|
|
|
// GlAccount is a first class object type
|
|
type GlAccount struct {
|
|
ID string
|
|
AccountID string
|
|
AccountLevel float64
|
|
AccountName string
|
|
AccountNumber float64
|
|
AccountSign string
|
|
AccountType string
|
|
CreatedByID string
|
|
CreatedDate sql.NullTime
|
|
Description string
|
|
IsActive bool
|
|
IsBankAccount bool
|
|
IsSummary bool
|
|
LastModifiedByID string
|
|
LastModifiedDate sql.NullTime
|
|
Name string
|
|
ParentFK string
|
|
ParentGlAccountID string
|
|
Ref string
|
|
Status string
|
|
TenantID string
|
|
}
|