完成系统管理web端功能,实现系统管理服务端接口,实现登录功能

This commit is contained in:
lixiaoyuan
2025-07-18 09:08:09 +08:00
parent 4a198a7271
commit 7b3f32f334
31 changed files with 1384 additions and 325 deletions

View File

@@ -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