|
@@ -122,7 +122,7 @@ public class TbOrderController {
|
|
|
|
|
|
/** 系统接收到航通接口信息:进出口申报单退单 **/
|
|
|
@RequestMapping("rpc/chargeback")
|
|
|
- public boolean chargeback(HtDeclareChargebackDto htDeclareChargebackDto) {
|
|
|
+ public boolean chargeback(@RequestBody HtDeclareChargebackDto htDeclareChargebackDto) {
|
|
|
return tbOrderService.chargeback(htDeclareChargebackDto);
|
|
|
}
|
|
|
@RequestMapping("rpc/getOrderListByMainIds")
|
|
@@ -132,7 +132,7 @@ public class TbOrderController {
|
|
|
|
|
|
/** 系统接收到航通接口信息:车辆已出一级市场 ,相对应的一级市场订单状态修改 **/
|
|
|
@RequestMapping("rpc/orderFinish")
|
|
|
- public boolean orderFinish(HtPassCardDTO htPassCardDTO) {
|
|
|
+ public boolean orderFinish(@RequestBody HtPassCardDTO htPassCardDTO) {
|
|
|
return tbOrderService.orderFinish(htPassCardDTO);
|
|
|
}
|
|
|
|