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.
26 lines
406 B
26 lines
406 B
#ifndef NWHOLESTOCKS_H
|
|
#define NWHOLESTOCKS_H
|
|
|
|
#include <QObject>
|
|
#include "structs.h"
|
|
|
|
class XWholeStocks : public QObject
|
|
{
|
|
public:
|
|
Q_OBJECT
|
|
public:
|
|
explicit XWholeStocks(QObject *parent = nullptr);
|
|
~XWholeStocks();
|
|
|
|
QString toInsertSql(_WholeStocksParam stock);
|
|
QString toDeleteSql();
|
|
QString toQuerySql();
|
|
QString toUpdateSql();
|
|
|
|
|
|
signals:
|
|
|
|
};
|
|
|
|
#endif // NWHOLESTOCKS_H
|