From 2113520df9b606002374629383612f53183c89e0 Mon Sep 17 00:00:00 2001
From: rain <1679827795@qq.com>
Date: Fri, 16 Jan 2026 11:00:48 +0800
Subject: [PATCH] 工单数据管理模块注释不用接口

---
 drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdDataObjectionAttachmentController.java |   60 ++++++++++++++++++++++++++++++------------------------------
 1 files changed, 30 insertions(+), 30 deletions(-)

diff --git a/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdDataObjectionAttachmentController.java b/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdDataObjectionAttachmentController.java
index 729bd8c..dd5ae93 100644
--- a/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdDataObjectionAttachmentController.java
+++ b/drone-service/drone-gd/src/main/java/org/sxkj/gd/orderdata/controller/GdDataObjectionAttachmentController.java
@@ -91,25 +91,25 @@
 		return R.data(pages);
 	}
 
-	/**
-	 * 数据异议申请附件表 新增
-	 */
-	@PostMapping("/save")
-	@ApiOperationSupport(order = 4)
-	@ApiOperation(value = "新增", notes = "传入gdDataObjectionAttachment")
-	public R save(@Valid @RequestBody GdDataObjectionAttachmentEntity gdDataObjectionAttachment) {
-		return R.status(gdDataObjectionAttachmentService.save(gdDataObjectionAttachment));
-	}
+//	/**
+//	 * 数据异议申请附件表 新增
+//	 */
+//	@PostMapping("/save")
+//	@ApiOperationSupport(order = 4)
+//	@ApiOperation(value = "新增", notes = "传入gdDataObjectionAttachment")
+//	public R save(@Valid @RequestBody GdDataObjectionAttachmentEntity gdDataObjectionAttachment) {
+//		return R.status(gdDataObjectionAttachmentService.save(gdDataObjectionAttachment));
+//	}
 
-	/**
-	 * 数据异议申请附件表 修改
-	 */
-	@PostMapping("/update")
-	@ApiOperationSupport(order = 5)
-	@ApiOperation(value = "修改", notes = "传入gdDataObjectionAttachment")
-	public R update(@Valid @RequestBody GdDataObjectionAttachmentEntity gdDataObjectionAttachment) {
-		return R.status(gdDataObjectionAttachmentService.updateById(gdDataObjectionAttachment));
-	}
+//	/**
+//	 * 数据异议申请附件表 修改
+//	 */
+//	@PostMapping("/update")
+//	@ApiOperationSupport(order = 5)
+//	@ApiOperation(value = "修改", notes = "传入gdDataObjectionAttachment")
+//	public R update(@Valid @RequestBody GdDataObjectionAttachmentEntity gdDataObjectionAttachment) {
+//		return R.status(gdDataObjectionAttachmentService.updateById(gdDataObjectionAttachment));
+//	}
 
 	/**
 	 * 数据异议申请附件表 新增或修改
@@ -132,20 +132,20 @@
 	}
 
 
-	/**
-	 * 导出数据
-	 */
-	@GetMapping("/export-gdDataObjectionAttachment")
-	@ApiOperationSupport(order = 9)
-	@ApiOperation(value = "导出数据", notes = "传入gdDataObjectionAttachment")
-	public void exportGdDataObjectionAttachment(@ApiIgnore @RequestParam Map<String, Object> gdDataObjectionAttachment, BladeUser bladeUser, HttpServletResponse response) {
-		QueryWrapper<GdDataObjectionAttachmentEntity> queryWrapper = Condition.getQueryWrapper(gdDataObjectionAttachment, GdDataObjectionAttachmentEntity.class);
+//	/**
+//	 * 导出数据
+//	 */
+//	@GetMapping("/export-gdDataObjectionAttachment")
+//	@ApiOperationSupport(order = 9)
+//	@ApiOperation(value = "导出数据", notes = "传入gdDataObjectionAttachment")
+//	public void exportGdDataObjectionAttachment(@ApiIgnore @RequestParam Map<String, Object> gdDataObjectionAttachment, BladeUser bladeUser, HttpServletResponse response) {
+//		QueryWrapper<GdDataObjectionAttachmentEntity> queryWrapper = Condition.getQueryWrapper(gdDataObjectionAttachment, GdDataObjectionAttachmentEntity.class);
 		//if (!AuthUtil.isAdministrator()) {
 		//	queryWrapper.lambda().eq(GdDataObjectionAttachment::getTenantId, bladeUser.getTenantId());
 		//}
-		queryWrapper.lambda().eq(GdDataObjectionAttachmentEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
-		List<GdDataObjectionAttachmentExcel> list = gdDataObjectionAttachmentService.exportGdDataObjectionAttachment(queryWrapper);
-		ExcelUtil.export(response, "数据异议申请附件表数据" + DateUtil.time(), "数据异议申请附件表数据表", list, GdDataObjectionAttachmentExcel.class);
-	}
+//		queryWrapper.lambda().eq(GdDataObjectionAttachmentEntity::getIsDeleted, BladeConstant.DB_NOT_DELETED);
+//		List<GdDataObjectionAttachmentExcel> list = gdDataObjectionAttachmentService.exportGdDataObjectionAttachment(queryWrapper);
+//		ExcelUtil.export(response, "数据异议申请附件表数据" + DateUtil.time(), "数据异议申请附件表数据表", list, GdDataObjectionAttachmentExcel.class);
+//	}
 
 }

--
Gitblit v1.9.3