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.
13 lines
201 B
C
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;
|
|
}; |