write server mode

This commit is contained in:
2023-12-15 02:29:48 +00:00
parent 6a1f63e780
commit 2f21e0cca3
6 changed files with 112 additions and 3 deletions

View File

@ -451,4 +451,8 @@ std::vector<std::string> BookStoreEngineClass::ExecuteReport(
return ret;
}
return std::vector<std::string>();
}
std::string BookStoreEngineClass::QueryUserInfo(const std::string &user_name) {
return user_name + std::to_string(user_data_base.GetPrevilege(user_name));
}