передается список ПП в sendQueryToDB для отправки

This commit is contained in:
2025-11-18 12:58:13 +03:00
parent 168ded7b1e
commit 4f14cddbed
12 changed files with 193 additions and 53 deletions

View File

@@ -5,6 +5,22 @@
#include <QList>
#include "DataBaseLMS_global.h"
struct ModeList
{
bool demo = false;
bool train = false;
bool exam = false;
bool autoM = false;
};
struct SubProc
{
QString dmCode;
QString title;
ModeList modeList;
};
class DATABASELMS_EXPORT ProcedureID
{
public:
@@ -105,6 +121,8 @@ public:
QList<Malfunction> malfunctionList; // список неисправностей
FIMReport report; // отчет по выполнению "fim"
QList<SubProc> listSubProc;
static int lastID;
};