1、列表增加order_no

2、申请代理配置Nornal
This commit is contained in:
2025-05-28 17:57:22 +08:00
parent 031ba733f5
commit e0f1a848a6
11 changed files with 50 additions and 10 deletions

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

@@ -0,0 +1,24 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}",
"args": []
},
{
"name": "调试API服务",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/app/user/cmd/api/main.go",
"args": ["-f", "etc/main.dev.yaml"],
"env": {
"ENV": "development"
}
}
]
}

19
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Run Go-Zero API (无调试)",
"type": "shell",
"command": "go run ${workspaceFolder}/app/user/cmd/api/main.go -f ${workspaceFolder}/app/user/cmd/api/etc/main.dev.yaml",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}