1
0
forked from BRT/arc
arc/models/db/AccountInfo.h
slava 92b78c3804 Add description field to accounts table and related logic
Added a new `description` column to the `accounts` table in the database schema. Updated the model, DAO methods, and queries to handle the `description` field for both inserting and retrieving account data. This change ensures that account entries can now include descriptive information.
2025-04-22 10:18:42 +07:00

14 lines
226 B
C

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