账单记录器迁移。

This commit is contained in:
2026-02-27 12:29:27 +08:00
commit 21b9cc0590
54 changed files with 4195 additions and 0 deletions

19
statistic.h Normal file
View File

@@ -0,0 +1,19 @@
#ifndef STATISTIC_H
#define STATISTIC_H
#include "SqlOpr.h"
class Statistic
{
public:
Statistic(std::unique_ptr<RepaySqlOpr>& repaySqlOpr);
~Statistic();
public:
void Calculate(const AccountRecordList& list);
private:
std::unique_ptr<RepaySqlOpr>& repaySqlOpr_;
};
#endif // STATISTIC_H