更新系统

This commit is contained in:
清晨
2025-04-03 10:50:11 +08:00
commit 242237c7e6
1414 changed files with 120299 additions and 0 deletions

42
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,42 @@
{
// 使用 IntelliSense 了解相关属性。
// 悬停以查看现有属性的描述。
// 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Current File",
"request": "launch",
"mainClass": "${file}"
},
{
"type": "java",
"name": "MallAdminApplication",
"request": "launch",
"mainClass": "org.dromara.MallAdminApplication",
"projectName": "ruoyi-admin"
},
{
"type": "java",
"name": "MallApiApplication",
"request": "launch",
"mainClass": "org.dromara.MallApiApplication",
"projectName": "ruoyi-mall-api"
},
{
"type": "java",
"name": "MonitorAdminApplication",
"request": "launch",
"mainClass": "org.dromara.monitor.admin.MonitorAdminApplication",
"projectName": "ruoyi-monitor-admin"
},
{
"type": "java",
"name": "SnailJobServerApplication",
"request": "launch",
"mainClass": "org.dromara.snailjob.SnailJobServerApplication",
"projectName": "ruoyi-snailjob-server"
}
]
}