From 1d2b7c3172a9a61634de47febd845d67fcf2f417 Mon Sep 17 00:00:00 2001
From: linwei <872216696@qq.com>
Date: Fri, 22 May 2026 14:23:33 +0800
Subject: [PATCH] fix(workflow): 修复工单流程阶段组装逻辑
---
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