feat: add ungrouped filter to account

This commit is contained in:
Hg
2026-03-19 15:42:21 +08:00
parent 9f6ab6b817
commit 8027531d07
9 changed files with 47 additions and 4 deletions

View File

@@ -14,6 +14,8 @@ var (
ErrAccountNilInput = infraerrors.BadRequest("ACCOUNT_NIL_INPUT", "account input cannot be nil")
)
const AccountListGroupUngrouped int64 = -1
type AccountRepository interface {
Create(ctx context.Context, account *Account) error
GetByID(ctx context.Context, id int64) (*Account, error)