Commit 1fd3985f authored by unset's avatar unset

添加通知信息

parent 374622d3
...@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RequestBody; ...@@ -16,7 +16,7 @@ import org.springframework.web.bind.annotation.RequestBody;
@FeignClient(value = "rs-website", contextId = "website-base") @FeignClient(value = "rs-website", contextId = "website-base")
public interface WebsiteFeign { public interface WebsiteFeign {
@PostMapping(value = "orderInfo/web/updateOrderStatus") @PostMapping(value = "orderInfo/web/app/unauth/updateOrderStatus")
public ObjectRestResponse updateOrderStatus(@RequestBody OrderInfo orderInfo); public ObjectRestResponse updateOrderStatus(@RequestBody OrderInfo orderInfo);
} }
...@@ -75,7 +75,7 @@ public class OrderInfoWebController extends BaseController<OrderInfoBiz,OrderInf ...@@ -75,7 +75,7 @@ public class OrderInfoWebController extends BaseController<OrderInfoBiz,OrderInf
return baseBiz.pay(orderPayVo); return baseBiz.pay(orderPayVo);
} }
@PostMapping(value = "updateOrderStatus") @PostMapping(value = "/app/unauth/updateOrderStatus")
public ObjectRestResponse updateOrderStatus(@RequestBody OrderInfo orderInfo) { public ObjectRestResponse updateOrderStatus(@RequestBody OrderInfo orderInfo) {
return baseBiz.updateOrderStatus(orderInfo); return baseBiz.updateOrderStatus(orderInfo);
} }
......
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