mirror of
https://gitee.com/js-yhsec/energy_storage.git
synced 2026-05-28 03:09:24 +08:00
完成系统管理web端功能,实现系统管理服务端接口,实现登录功能
This commit is contained in:
@@ -51,19 +51,19 @@ public:
|
||||
* 获取 string 值
|
||||
* @param: [string key] 索引名称
|
||||
*/
|
||||
string get_str(string key);
|
||||
string getStr(string key);
|
||||
|
||||
/**
|
||||
* 获取 int 值
|
||||
* @param: [string key] 索引名称
|
||||
*/
|
||||
int get_int(string key);
|
||||
int getInt(string key);
|
||||
|
||||
/**
|
||||
* 获取 float 值
|
||||
* @param: [string key] 索引名称
|
||||
*/
|
||||
float get_float(string key);
|
||||
float getFloat(string key);
|
||||
|
||||
/**
|
||||
* 删除指定索引的值
|
||||
@@ -122,7 +122,7 @@ public:
|
||||
* 判断是否含有数据项
|
||||
* @param: [string key] 索引名称
|
||||
*/
|
||||
bool is_empty(string key);
|
||||
bool isEmpty(string key);
|
||||
|
||||
/**
|
||||
* 判断数据项是否是float数值类型
|
||||
@@ -143,7 +143,7 @@ public:
|
||||
void clear();
|
||||
|
||||
private:
|
||||
map<string, string> map_fields_;
|
||||
map<string, string> mapFields_;
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user