由于上个仓库主线和分支差距过大且主线不再使用所以新建此仓库

This commit is contained in:
Yakumo Hokori
2025-12-14 02:30:23 +08:00
commit 703d53c6f3
49 changed files with 10806 additions and 0 deletions

20
src/db/user.json Normal file
View File

@@ -0,0 +1,20 @@
{
"users": [
{
"id": 1,
"username": "bbt",
"password": "123",
"email": "",
"role": "admin",
"createdAt": "2024-01-01T00:00:00Z"
},
{
"id": 2,
"username": "user",
"password": "user123",
"email": "user@example.com",
"role": "user",
"createdAt": "2024-01-01T00:00:00Z"
}
]
}