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.
14 lines
226 B
C
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;
|
|
}; |