完成系统管理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

@@ -9,7 +9,8 @@ public:
DaoEntity(string tableName);
~DaoEntity();
static MysqlOptions& mysqlOptions();
static MysqlOption& mysqlOption();
static void setOption(std::string host, int port, std::string user, std::string pwd, std::string dbname);
static std::shared_ptr<DaoEntity> create(string tableName);
@@ -99,7 +100,7 @@ public:
bool updateFields(DataFields& fields, vector<string> vecKeys, const string& cond);
protected:
static MysqlOptions options_;
static MysqlOption option_;
// mysql 数据库操作对象
std::shared_ptr<MysqlClient> db_ = nullptr;