@GetMapping("/getCollectByShop")
    public void getCollectByShop(@RequestParam("goodsDbidList") List<String> goodsDbidList) throws IOException {
        List<GoodsInfoVO> goodsInfoVOList = iProjectPlanPurchaseService.getCollectByShop(goodsDbidList);
        ResponseUtil.showMessage("success", "成功", goodsInfoVOList);
    }

Postman以@RequestParam方式传入list的正确方式

 list元素之间用逗号隔开,以此区分不同元素

相关文章:

  • 2022-12-23
  • 2021-09-29
  • 2022-01-06
  • 2022-01-23
  • 2021-12-01
  • 2022-12-23
  • 2021-08-31
  • 2022-01-19
猜你喜欢
  • 2022-12-23
  • 2021-11-23
  • 2021-06-07
  • 2022-02-26
  • 2022-12-23
  • 2021-11-08
相关资源
相似解决方案