package app import ( "database/sql" "code.tnxs.net/taxnexus/lib/api/ledger/ledger_models" ) // GlAccountChannelWrapper wraps the object with workflow params type GlAccountChannelWrapper struct { Obj ledger_models.GlAccount Principal User SagaID string SagaType string } // 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 }