Authored by chenchao

add app version

@@ -373,7 +373,8 @@ public class SellerOrderController { @@ -373,7 +373,8 @@ public class SellerOrderController {
373 public ApiResponse refresh(@RequestParam("type") int type, 373 public ApiResponse refresh(@RequestParam("type") int type,
374 @RequestParam("uid") int uid, 374 @RequestParam("uid") int uid,
375 @RequestParam("tabType") String tabType, 375 @RequestParam("tabType") String tabType,
376 - @RequestParam(value = "orderCode") long orderCode) { 376 + @RequestParam(value = "orderCode") long orderCode,
  377 + @RequestParam(value = "app_version", required = false)String appVersion) {
377 378
378 379
379 TabType actor = TabType.getTabType(tabType); 380 TabType actor = TabType.getTabType(tabType);
@@ -387,6 +388,7 @@ public class SellerOrderController { @@ -387,6 +388,7 @@ public class SellerOrderController {
387 .tabType(tabType) 388 .tabType(tabType)
388 .actor(actor) 389 .actor(actor)
389 .orderCode(orderCode) 390 .orderCode(orderCode)
  391 + .appVersion(appVersion)
390 .build(); 392 .build();
391 logger.info("in ufo.order.refresh, req {}", orderRequest); 393 logger.info("in ufo.order.refresh, req {}", orderRequest);
392 SellerOrderListResp orderListInfoRsp = null; 394 SellerOrderListResp orderListInfoRsp = null;
@@ -24,4 +24,6 @@ public class OrderRequest { @@ -24,4 +24,6 @@ public class OrderRequest {
24 TabType actor; 24 TabType actor;
25 25
26 OrderCancelEvent orderCancelEvent; 26 OrderCancelEvent orderCancelEvent;
  27 +
  28 + String appVersion;
27 } 29 }