refactor: banking services to Nestjs

This commit is contained in:
Ahmed Bouhuolia
2025-01-05 16:26:23 +02:00
parent b72f85b394
commit 1869ba216f
150 changed files with 9698 additions and 163 deletions

View File

@@ -2,6 +2,13 @@ import TenantModel from 'models/TenantModel';
import { Model } from 'objection';
export class RecognizedBankTransaction extends TenantModel {
public bankRuleId!: number;
public uncategorizedTransactionId!: number;
public assignedCategory!: string;
public assignedAccountId!: number;
public assignedPayee!: string;
public assignedMemo!: string;
/**
* Table name.
*/