apifox中get请求传递集合方式

项目中get请求需要传递集合方式:
apifox中get请求传递集合方式_第1张图片
接口中接收方式:

@GetMapping("/findGoodsCouponInfoVos")
public ApiResult findGoodsCouponInfoVos(@RequestParam(value = "selectedCouponIds",required = false) List<Integer> selectedCouponIds, @NotNull(message = "商品id不允许为空!") Integer goodsId) throws Exception {
  // todo 处理逻辑
}

如果不使用@RequestParam项目请求报错,由于业务中规定selectedCouponIds为非必填,所以设置required 为false

你可能感兴趣的:(java,开发语言)