吉安感知网项目-后端
linwei
17 hours ago 08ddfad4530a014094c06fe68b8c2d9a0753403a
drone-service/drone-gd/src/main/java/org/sxkj/gd/flyer/controller/GdFlyerController.java
@@ -106,4 +106,14 @@
      return R.status(gdFlyerService.deleteLogic(Func.toLongList(ids)));
   }
   /**
    * 查询全部飞手flyer_id集合(过滤已删除)
    */
   @GetMapping("/allFlyerIds")
   @ApiOperationSupport(order = 8)
   @ApiOperation(value = "查询全部飞手flyer_id集合", notes = "仅返回未删除飞手的flyer_id")
   public R<List<String>> allFlyerIds() {
      return R.data(gdFlyerService.selectAllFlyerIds());
   }
}