You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
393 B
22 lines
393 B
|
4 years ago
|
#ifndef NHIGHSTOCKINDEXS_H
|
||
|
|
#define NHIGHSTOCKINDEXS_H
|
||
|
|
|
||
|
|
#include <QObject>
|
||
|
|
#include "structs.h"
|
||
|
|
|
||
|
|
class XHighStockIndexs : public QObject
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
public:
|
||
|
|
explicit XHighStockIndexs(QObject *parent = nullptr);
|
||
|
|
~XHighStockIndexs();
|
||
|
|
|
||
|
|
QString toInsertSql(_HighStockIndexsParam stock);
|
||
|
|
QString toDeleteSql();
|
||
|
|
QString toQuerySql();
|
||
|
|
signals:
|
||
|
|
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif // NHIGHSTOCKINDEXS_H
|