About the use of postMan

// java
// postmanAjax
@RequestMapping("/purchase")
public ApiResult purchase(@RequestParam Integer invoiceTypeId, @RequestBody  List<GoodsOutInDetailVo> list) {
    return ApiResultUtil.Success(invoiceTypeId.toString(),list);
}
 postmanAjax
Dec.25,2021


@ Response is placed in the request body, such as upstairs; @ RequestParam is placed in the url parameter

Menu