From 7c966f0bc7109386b3abca3ecddcd2d6fc774421 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Fri, 16 Jan 2026 15:12:07 +0800
Subject: [PATCH] 评价管理页面接口

---
 drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdSupplyDemandController.java |   60 ++++++++++++++++++++++++++++++------------------------------
 1 files changed, 30 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 f1f01a1..c5ba55e 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
@@ -91,25 +91,25 @@
 		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("/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));
-	}
+//	/**
+//	 * 供需需求信息表 修改
+//	 */
+//	@PostMapping("/update")
+//	@ApiOperationSupport(order = 5)
+//	@ApiOperation(value = "修改", notes = "传入gdSupplyDemand")
+//	public R update(@Valid @RequestBody GdSupplyDemandEntity gdSupplyDemand) {
+//		return R.status(gdSupplyDemandService.updateById(gdSupplyDemand));
+//	}
 
 	/**
 	 * 供需需求信息表 新增或修改
@@ -132,20 +132,20 @@
 	}
 
 
-	/**
-	 * 导出数据
-	 */
-	@GetMapping("/export-gdSupplyDemand")
-	@ApiOperationSupport(order = 9)
-	@ApiOperation(value = "导出数据", notes = "传入gdSupplyDemand")
-	public void exportGdSupplyDemand(@ApiIgnore @RequestParam Map<String, Object> gdSupplyDemand, BladeUser bladeUser, HttpServletResponse response) {
-		QueryWrapper<GdSupplyDemandEntity> queryWrapper = Condition.getQueryWrapper(gdSupplyDemand, GdSupplyDemandEntity.class);
+//	/**
+//	 * 导出数据
+//	 */
+//	@GetMapping("/export-gdSupplyDemand")
+//	@ApiOperationSupport(order = 9)
+//	@ApiOperation(value = "导出数据", notes = "传入gdSupplyDemand")
+//	public void exportGdSupplyDemand(@ApiIgnore @RequestParam Map<String, Object> gdSupplyDemand, BladeUser bladeUser, HttpServletResponse response) {
+//		QueryWrapper<GdSupplyDemandEntity> queryWrapper = Condition.getQueryWrapper(gdSupplyDemand, GdSupplyDemandEntity.class);
 		//if (!AuthUtil.isAdministrator()) {
 		//	queryWrapper.lambda().eq(GdSupplyDemand::getTenantId, bladeUser.getTenantId());
 		//}
-		queryWrapper.lambda().eq(GdSupplyDemandEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
-		List<GdSupplyDemandExcel> list = gdSupplyDemandService.exportGdSupplyDemand(queryWrapper);
-		ExcelUtil.export(response, "供需需求信息表数据" + DateUtil.time(), "供需需求信息表数据表", list, GdSupplyDemandExcel.class);
-	}
+//		queryWrapper.lambda().eq(GdSupplyDemandEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
+//		List<GdSupplyDemandExcel> list = gdSupplyDemandService.exportGdSupplyDemand(queryWrapper);
+//		ExcelUtil.export(response, "供需需求信息表数据" + DateUtil.time(), "供需需求信息表数据表", list, GdSupplyDemandExcel.class);
+//	}
 
 }

--
Gitblit v1.9.3