Updated include paths for consistent structure under the `db` directory. Added `AccountInfoScreener` for parsing card data using Tesseract OCR and enhanced related models. Removed unused code and simplified main workflow.
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;
|
|
}; |