refactor: rename and reorganize data models and repositories for clarity

This commit is contained in:
hhhhsc
2025-10-24 15:33:46 +08:00
parent d58c2a0ac7
commit 2d2419205a
60 changed files with 822 additions and 614 deletions

View File

@@ -22,7 +22,7 @@ class SQLManager:
connection_url = URL.create(
drivername="mysql+pymysql",
username=os.getenv("MYSQL_USER", "root"),
password=os.getenv("MYSQL_PASSWORD", "Huawei@123"),
password=os.getenv("MYSQL_PASSWORD", "password"),
host=os.getenv("MYSQL_HOST", "mysql"),
port=os.getenv("MYSQL_PORT", 3306),
database=os.getenv("MYSQL_DATABASE", "datamate"),