Commit ca1ba018 authored by 332784038@qq.com's avatar 332784038@qq.com

批量获取需要申请费用的订单详情接口修改

parent 47294618
......@@ -45,7 +45,7 @@ public class BatchOrderFeeApplyController {
@ApiOperation("批量获取需要申请费用的订单详情")
@ApiImplicitParam(name = "orderIds", value = "订单ids", required = true, example = "1024,2048,3072,4096", dataTypeClass = String.class)
@PreAuthorize("@ss.hasPermission('ecw:batch-order-fee-apply:query')")
public CommonResult<List<OrderBackVO>> getOrderListByIds(String orderIds) {
public CommonResult<List<OrderBackVO>> getOrderListByIds(@RequestParam("orderIds")String orderIds) {
return success(batchOrderFeeApplyService.getOrderListByIds(Arrays.stream(orderIds.split(",")).map(Long::parseLong).collect(Collectors.toList())));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment