1
0
forked from BRT/arc
arc/models/AccountInfo.h
slava d21e7f4048 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

13 lines
201 B
C

#pragma once
#include <QDateTime>
struct AccountInfo {
int id;
QString deviceId;
QString appName;
QString cardName;
double amount;
QDateTime updateTime;
QString status;
};