Newer
Older
ZXSSCJ / DeviceHub / protocol / dto / SignalGeneratorInterfaceDto.h
#ifndef SIGNALGENERATORINTERFACEDTO_H
#define SIGNALGENERATORINTERFACEDTO_H

#include <QObject>
#include "protocol/dto/DeviceFrameBaseDto.h"

/**
 * @brief The SignalGeneratorInterfaceDto class
 * 信号产生器 界面状态信息
 */
class SignalGeneratorInterfaceDto : public DeviceFrameBaseDto
{
    Q_OBJECT
public:
    explicit SignalGeneratorInterfaceDto(QObject *parent = nullptr);

    QString keyControl; // <1>键盘控制情况:1=锁定;0=解锁
    QString timeType; // <2>时间显示类别:1=儒略日;0=年月日

    QJsonObject toJSON();

signals:

};

#endif // SIGNALGENERATORINTERFACEDTO_H