DPS/DataPlatform/DataRow.h

25 lines
314 B
C
Raw Normal View History

2025-06-23 10:41:33 +08:00
#pragma once
#include <QOBject>
#include<QVariant>
#include "json.hpp"
using json = nlohmann::json;
class DataRow:public QObject
{
public:
DataRow();
~DataRow();
public:
int id;
QVariant value[80];
QString colName[80];
int colnum = 6;
QVariant getValue(QString name);
void toJson(json& jsonObj);
};