Commit c18e6870 by zhangzhendong

订单交易

parent 27dffb56
......@@ -2,6 +2,7 @@ package com.gic.haoban.manage.web.controller.order;
import java.util.List;
import com.gic.business.order.dto.logistics.OrderLogisticsDTO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestBody;
......@@ -52,7 +53,7 @@ public class LogisticsController {
@RequestMapping("get-logistics")
public RestResponse<Object> getLogistics(@RequestBody QueryLogisticsQO queryLogisticsQO) {
QueryLogisticsQDTO qdto = EntityUtil.changeEntityByJSON(QueryLogisticsQDTO.class, queryLogisticsQO);
ServiceResponse<LogisticsDTO> response = logisticsApiService.queryLogistics(qdto);
ServiceResponse<OrderLogisticsDTO> response = logisticsApiService.queryLogistics(qdto);
if (response.isSuccess()) {
return RestResponse.successResult(response.getResult());
}
......
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