|
@@ -166,4 +166,15 @@ public class DragTableGroupController extends BaseController {
|
|
|
// CommonEntity commonEntityResult = dragTableGroupService.queryProcessPopupResultInfo(commonEntity);
|
|
|
// return commonEntityResult;
|
|
|
//}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取拖拽格组详细信息
|
|
|
+ */
|
|
|
+// @PreAuthorize("@ss.hasPermi('system:group:query')")
|
|
|
+ @GetMapping("/getInfoBySqlKey/{groupKey}")
|
|
|
+ public AjaxResult getInfoBySqlKey(@PathVariable("groupKey") String groupKey)
|
|
|
+ {
|
|
|
+ return success(dragTableGroupService.selectDragTableGroupInfoByGroupKey(groupKey));
|
|
|
+ }
|
|
|
+
|
|
|
}
|