This commit is contained in:
2026-01-12 15:45:22 +08:00
parent f0b4b12107
commit 90466bb69d
2 changed files with 2 additions and 2 deletions

View File

@@ -48,7 +48,7 @@ amap:
# 岗位API配置
job_api:
base_url: "http://127.0.0.1:9091/app" # 岗位API地址
base_url: "http://127.0.0.1:9091/app/job/list" # 岗位API地址
timeout: 30s
# OCR服务配置 - 用于解析图片、PDF、Excel、PPT等文件

View File

@@ -77,7 +77,7 @@ func (c *JobClient) QueryJobs(req *model.JobQueryRequest) (*model.JobAPIResponse
params.Set("jobLocationAreaCode", req.JobLocationAreaCode)
}
reqURL := fmt.Sprintf("%s/job/aiList?%s", c.baseURL, params.Encode())
reqURL := fmt.Sprintf("%s?%s", c.baseURL, params.Encode())
httpReq, err := http.NewRequest("GET", reqURL, nil)
if err != nil {