|
@@ -1,9 +1,9 @@
|
|
package com.diagbot.web;
|
|
package com.diagbot.web;
|
|
|
|
|
|
|
|
|
|
-import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
|
import com.diagbot.annotation.SysLogger;
|
|
import com.diagbot.annotation.SysLogger;
|
|
import com.diagbot.dto.RespDTO;
|
|
import com.diagbot.dto.RespDTO;
|
|
|
|
+import com.diagbot.entity.wrapper.OrderDetailsWapper;
|
|
import com.diagbot.facade.OrderDetailsFacade;
|
|
import com.diagbot.facade.OrderDetailsFacade;
|
|
import com.diagbot.vo.AuditStatusVO;
|
|
import com.diagbot.vo.AuditStatusVO;
|
|
import com.diagbot.vo.OrderDetialsVO;
|
|
import com.diagbot.vo.OrderDetialsVO;
|
|
@@ -15,6 +15,8 @@ import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
|
|
+import java.util.List;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* @Description: 订单明细 前端控制器
|
|
* @Description: 订单明细 前端控制器
|
|
* @Author: wangyu
|
|
* @Author: wangyu
|
|
@@ -29,13 +31,11 @@ public class DiagOrderDetailsController {
|
|
private OrderDetailsFacade orderDetailsFacade;
|
|
private OrderDetailsFacade orderDetailsFacade;
|
|
|
|
|
|
@ApiOperation(value = "产品申请——显示[by:wangyu]",
|
|
@ApiOperation(value = "产品申请——显示[by:wangyu]",
|
|
- notes = "current:页数<br>" +
|
|
|
|
- "size:每页显示条数<br>" +
|
|
|
|
- "status:订单状态(0.未付款1.已付款)" )
|
|
|
|
|
|
+ notes = "orderNum:订单编号<br>")
|
|
@PostMapping("/getAllOrderDetials")
|
|
@PostMapping("/getAllOrderDetials")
|
|
@SysLogger("getAllOrderDetials")
|
|
@SysLogger("getAllOrderDetials")
|
|
- public RespDTO<Page> getAllOrderDetials(@RequestBody OrderDetialsVO orderDetialsVO) {
|
|
|
|
- Page list = orderDetailsFacade.getAllOrderDetials(orderDetialsVO);
|
|
|
|
|
|
+ public RespDTO<List<OrderDetailsWapper>> getAllOrderDetials(@RequestBody OrderDetialsVO orderDetialsVO) {
|
|
|
|
+ List<OrderDetailsWapper> list = orderDetailsFacade.getAllOrderDetials(orderDetialsVO);
|
|
return RespDTO.onSuc(list);
|
|
return RespDTO.onSuc(list);
|
|
}
|
|
}
|
|
|
|
|