Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yanxuan-qc-change-system
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
yx-qc-change-flow
yanxuan-qc-change-system
Commits
587d846d
Commit
587d846d
authored
Nov 24, 2025
by
王志超
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 查询商品供应商三方接口
parent
7a30c6a9
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
SupplierController.java
...ail/yanxuan/change/web/controller/SupplierController.java
+14
-0
No files found.
yanxuan-qc-change-system-web/src/main/java/com/netease/mail/yanxuan/change/web/controller/SupplierController.java
View file @
587d846d
...
...
@@ -71,4 +71,18 @@ public class SupplierController {
itemId
,
itemName
,
page
,
pageSize
,
skuId
));
}
/**
* 根据商品Id列表查询供应商
* TODO: 三方接口还未提供,待实现
*
* @param itemIds 商品Id列表(可通过多个同名参数传递,如:?itemId=1&itemId=2&itemId=3)
* @return 供应商信息列表
*/
@GetMapping
(
"/query/supplier/by/item/ids"
)
public
AjaxResult
<
List
<
SupplierSimpleRsp
>>
querySupplierByItemIds
(
@RequestParam
(
name
=
"itemId"
)
List
<
Long
>
itemIds
)
{
// TODO: 待三方接口提供后实现
log
.
warn
(
"[querySupplierByItemIds] 三方接口还未提供,itemIds={}"
,
JSON
.
toJSONString
(
itemIds
));
return
AjaxResult
.
badRequest
(
"三方接口还未提供,待实现"
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment