|
@@ -1,9 +1,9 @@
|
|
|
package com.diagbot.web;
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
|
import com.diagbot.dto.RespDTO;
|
|
|
-import com.diagbot.entity.wrapper.OrderDetailsWapper;
|
|
|
import com.diagbot.facade.OrderDetailsFacade;
|
|
|
import com.diagbot.vo.AuditStatusVO;
|
|
|
import com.diagbot.vo.OrderDetialsVO;
|
|
@@ -15,8 +15,6 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
-import java.util.List;
|
|
|
-
|
|
|
/**
|
|
|
* @Description: 订单明细 前端控制器
|
|
|
* @Author: wangyu
|
|
@@ -36,8 +34,8 @@ public class DiagOrderDetailsController {
|
|
|
"status:订单状态(0.未付款1.已付款)" )
|
|
|
@PostMapping("/getAllOrderDetials")
|
|
|
@SysLogger("getAllOrderDetials")
|
|
|
- public RespDTO<List<OrderDetailsWapper>> getAllOrderDetials(@RequestBody OrderDetialsVO orderDetialsVO) {
|
|
|
- List<OrderDetailsWapper> list = orderDetailsFacade.getAllOrderDetials(orderDetialsVO);
|
|
|
+ public RespDTO<Page> getAllOrderDetials(@RequestBody OrderDetialsVO orderDetialsVO) {
|
|
|
+ Page list = orderDetailsFacade.getAllOrderDetials(orderDetialsVO);
|
|
|
return RespDTO.onSuc(list);
|
|
|
}
|
|
|
|