• 2024-08-15Walmart之获取订单(SellerFulfilled、WFSFulfilled)
    API地址CA:https://developer.walmart.com/api/ca/mp/orders#operation/getAllOrdersUS:https://developer.walmart.com/api/us/mp/orders#operation/getAllOrders一、建立请求实体与响应实体类(CA和US站点相差不大)请求实体@DatapublicclassWmGetOrderRequest{/
  • 2024-07-23使用shell获取路径参数的最后一个目录层级
    1、填写路径参数时可能会出现最后有多余的"/"场景,所以要先移除可能尾随的斜杠        举例:url=/Walmart-Onn-GTV/wave1/toAmlPatch/        last_dir=${A%/}    echo"$last_dir"结果        /Walmart-Onn-GTV/wave1/toAmlPatch2、使用ba