mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
15 lines
214 B
C
15 lines
214 B
C
|
|
#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;
|
|||
|
|
};
|