Newer
Older
ZXSSCJ / DeviceHub / protocol / dto / TimeReplicatorCmdRepDto.h
tanyue on 23 Dec 2021 412 bytes 20211223 timeReplicator command
#ifndef TIMEREPLICATORCMDREPDTO_H
#define TIMEREPLICATORCMDREPDTO_H

#include <QObject>

#include "DeviceFrameBaseDto.h"

class TimeReplicatorCmdRepDto : public DeviceFrameBaseDto
{
    Q_OBJECT
public:
    explicit TimeReplicatorCmdRepDto(QObject *parent = nullptr);

    qint8 cmdStatus;
    QString remarks;

    QJsonObject toJSON() override;

signals:

public slots:
};

#endif // TIMEREPLICATORCMDREPDTO_H