From 9032f502b99fa1e6db8d2c7ead3a4f7a86c80189 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Wed, 28 Jan 2026 10:30:05 +0800
Subject: [PATCH] 设备查询优化
---
drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java | 30 ------------------------------
1 files changed, 0 insertions(+), 30 deletions(-)
diff --git a/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java b/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java
index 1fa70ef..985033d 100644
--- a/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java
+++ b/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java
@@ -67,16 +67,6 @@
GdSupplyDemandEntity detail = gdSupplyDemandService.detailSupplyDemand(gdSupplyDemand);
return R.data(GdSupplyDemandWrapper.build().entityVO(detail));
}
-// /**
-// * 供需需求信息表 分页
-// */
-// @GetMapping("/list")
-// @ApiOperationSupport(order = 2)
-// @ApiOperation(value = "分页", notes = "传入gdSupplyDemand")
-// public R<IPage<GdSupplyDemandVO>> list(GdSupplyDemandDTO gdSupplyDemand, Query query) {
-// IPage<GdSupplyDemandEntity> pages = gdSupplyDemandService.selectGdSupplyDemandList(Condition.getPage(query), gdSupplyDemand);
-// return R.data(GdSupplyDemandWrapper.build().pageVO(pages));
-// }
/**
* 供需需求信息表 自定义分页
@@ -88,26 +78,6 @@
IPage<GdSupplyDemandVO> pages = gdSupplyDemandService.selectGdSupplyDemandPage(Condition.getPage(query), gdSupplyDemand);
return R.data(pages);
}
-
-// /**
-// * 供需需求信息表 新增
-// */
-// @PostMapping("/save")
-// @ApiOperationSupport(order = 4)
-// @ApiOperation(value = "新增", notes = "传入gdSupplyDemand")
-// public R save(@Valid @RequestBody GdSupplyDemandEntity gdSupplyDemand) {
-// return R.status(gdSupplyDemandService.save(gdSupplyDemand));
-// }
-
-// /**
-// * 供需需求信息表 修改
-// */
-// @PostMapping("/update")
-// @ApiOperationSupport(order = 5)
-// @ApiOperation(value = "修改", notes = "传入gdSupplyDemand")
-// public R update(@Valid @RequestBody GdSupplyDemandEntity gdSupplyDemand) {
-// return R.status(gdSupplyDemandService.updateById(gdSupplyDemand));
-// }
/**
* 供需需求信息表 新增或修改
--
Gitblit v1.9.3