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

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": []
}
]
}