OMS-GW推送-商业合作伙伴

This commit is contained in:
zhaoqing
2026-05-06 14:16:14 +08:00
parent 4d732b1bf8
commit d32e7e97f6
5 changed files with 10 additions and 8 deletions
@@ -214,6 +214,6 @@ public interface UserServiceFeign {
@PostMapping("/userShipperApi/updatePushStatus")
public AjaxResult<?> updatePushStatus(@RequestParam(value = "shipperId") Long shipperId,
@RequestParam(value = "pushStatus", required = false) Integer pushStatus,
@RequestParam(value = "pushTime", required = false) Date pushTime,
@RequestParam(value = "pushTime", required = false) String pushTime,
@RequestParam(value = "pushBy", required = false) Long pushBy);
}
@@ -189,7 +189,7 @@ public class RemoteUserFeignFallbackFactory implements FallbackFactory<UserServi
}
@Override
public AjaxResult<?> updatePushStatus(Long shipperId, Integer pushStatus, Date pushTime, Long pushBy) {
public AjaxResult<?> updatePushStatus(Long shipperId, Integer pushStatus, String pushTime, Long pushBy) {
return AjaxResult.error("更新失败" + throwable.getMessage());
}
};