1
0
forked from BRT/arc
arc/models/TransactionInfo.h
trnsmkot 60460751d6 Add database schema and DAO implementation for accounts and transactions
Introduced tables for devices, accounts, and transactions in the schema, along with associated models. Implemented DAO methods for CRUD operations, including upsert functionality for accounts and deduplication for transactions. These changes enable structured management of account and transaction data.
2025-04-21 12:01:24 +07:00

11 lines
163 B
C

#pragma once
#include <QDateTime>
struct TransactionInfo {
int id;
int accountId;
double amount;
QString description;
QDateTime timestamp;
};