mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-12 21:02:08 +08:00
getNotPlanOrderListPage、getNotPlanGoodsListPage http method get改为post
This commit is contained in:
+4
-6
@@ -119,20 +119,18 @@ public class PlanController {
|
||||
}
|
||||
|
||||
|
||||
|
||||
@GetMapping("getNotPlanOrderListPage")
|
||||
@PostMapping("getNotPlanOrderListPage")
|
||||
@Operation(summary = "获取未排单的订单分页列表")
|
||||
@PreAuthorize("@ss.hasPermission('unplannedOrders:query')")
|
||||
public CommonResult<PageResult<OrderRespVOCopy>> getOrderPage(@Valid OrderPageReqVOCopy pageReqVO) {
|
||||
public CommonResult<PageResult<OrderRespVOCopy>> getOrderPage(@Valid @RequestBody OrderPageReqVOCopy pageReqVO) {
|
||||
return success(planService.getOrderPage(pageReqVO));
|
||||
}
|
||||
|
||||
|
||||
|
||||
@GetMapping("getNotPlanGoodsListPage")
|
||||
@PostMapping("getNotPlanGoodsListPage")
|
||||
@Operation(summary = "获取未排单的大板板材分页列表")
|
||||
@PreAuthorize("@ss.hasPermission('unplannedOrders:query')")
|
||||
public CommonResult<PageResult<OrderGoodsResp>> getOrderGoodsPage(@Valid OrderPageReqVOCopy pageReqVO) {
|
||||
public CommonResult<PageResult<OrderGoodsResp>> getOrderGoodsPage(@Valid @RequestBody OrderPageReqVOCopy pageReqVO) {
|
||||
return success(planService.getOrderGoodsPage(pageReqVO));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user