实现削峰套利策略的编辑页面

This commit is contained in:
lixiaoyuan
2025-08-26 18:36:25 +08:00
parent 7fe51ea362
commit 8f6c83147b
37 changed files with 1506 additions and 729 deletions

15
src/app/Policy.h Normal file
View File

@@ -0,0 +1,15 @@
#pragma once
#include <string>
#include "common/Fields.h"
class MyPolicy
{
public:
int policyId {0};
int type {0};
std::string name;
std::string value;
int isOpen {0};
Fields fields;
};