From b54cb6d1d8742e94bd79623d4f410b3ff5abde86 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期四, 26 六月 2025 08:47:12 +0800
Subject: [PATCH] 6.定时轮询比特位,修改为只轮询EFEM, Bonder1, Bonder2, BakeCooling, VacuuumBake, Measurent, 其它只是以上的子单元,共用CC-Link的数据块。 7.修改一处转换机械手的放置目标POS时的错误 问题。 8.增加机械手状态和托盘是否有物料的信息打印,以便于创建搬送任务时观察和调试

---
 SourceCode/Bond/Servo/UserManager.cpp |   16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/SourceCode/Bond/Servo/UserManager.cpp b/SourceCode/Bond/Servo/UserManager.cpp
index db9f1e5..1e6d5f8 100644
--- a/SourceCode/Bond/Servo/UserManager.cpp
+++ b/SourceCode/Bond/Servo/UserManager.cpp
@@ -7,7 +7,7 @@
 #include <sstream>
 
 const std::string SESSION_FILE = R"(session.dat)";
-const std::string DATABASE_FILE = R"(BondEq.db)";
+const std::string DATABASE_FILE = R"(UserManager.db)";
 
 const std::string INITIAL_ADMIN_USERNAME = "admin";
 const std::string INITIAL_ADMIN_PASSWORD = "admin";
@@ -157,18 +157,18 @@
 
 // 获取程序路径下的config文件夹路径
 std::string UserManager::getConfigFolderPath() {
-    char path[MAX_PATH];
-    GetModuleFileName(NULL, path, MAX_PATH);
-    std::string exePath = std::string(path).substr(0, std::string(path).find_last_of("\\/"));
-    std::string configPath = exePath + "\\Config\\";
+    char szPath[MAX_PATH];
+    GetModuleFileName(NULL, szPath, MAX_PATH);
+    std::string exePath(szPath);
+    std::string dbDir = exePath.substr(0, exePath.find_last_of("\\/")) + "\\DB\\";
 
     // 检查并创建config文件夹
-    DWORD fileAttr = GetFileAttributes(configPath.c_str());
+    DWORD fileAttr = GetFileAttributes(dbDir.c_str());
     if (fileAttr == INVALID_FILE_ATTRIBUTES) {
-        CreateDirectory(configPath.c_str(), NULL);
+        CreateDirectory(dbDir.c_str(), NULL);
     }
 
-    return configPath;
+    return dbDir;
 }
 
 // 获取session.dat文件路径

--
Gitblit v1.9.3