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.
19 lines
378 B
19 lines
378 B
#ifndef LIMITUPSTOCKSQLMANAGER_H
|
|
#define LIMITUPSTOCKSQLMANAGER_H
|
|
|
|
#include "excel/limitupstockdecoder.h"
|
|
#include "db/structs.h"
|
|
|
|
class LimitUpStockSqlManager
|
|
{
|
|
public:
|
|
LimitUpStockSqlManager();
|
|
~LimitUpStockSqlManager();
|
|
|
|
QString toInsertSql(_limitUpStocksInfo stock);
|
|
QString toDeleteSql();
|
|
QString toQuerySql();
|
|
};
|
|
|
|
#endif // LIMITUPSTOCKSQLMANAGER_H
|