关闭校验

This commit is contained in:
孙小云 2026-01-20 14:13:29 +08:00
parent 83cf9933fb
commit 8f80eb8a96
1 changed files with 4 additions and 4 deletions

View File

@ -46,7 +46,7 @@ public class GroupController extends BaseController
* @param groupId 分组ID
* @return 结果
*/
@InnerAuth
//@InnerAuth
@DeleteMapping("/delete/{groupId}")
public R<Void> deleteGroup(@PathVariable("groupId") Long groupId)
{
@ -61,7 +61,7 @@ public class GroupController extends BaseController
* @param groupId 分组ID
* @return 结果
*/
@InnerAuth
//@InnerAuth
@PutMapping("/switch/{dockId}/{groupId}")
public R<Void> switchDockGroup(@PathVariable("dockId") Long dockId, @PathVariable("groupId") Long groupId)
{
@ -75,7 +75,7 @@ public class GroupController extends BaseController
* @param groupId 分组ID
* @return 机场列表
*/
@InnerAuth
//@InnerAuth
@GetMapping("/docks/{groupId}")
public R<List<DockVO>> getDocksByGroupId(@PathVariable("groupId") Long groupId)
{
@ -88,7 +88,7 @@ public class GroupController extends BaseController
*
* @return 分组ID列表
*/
@InnerAuth
//@InnerAuth
@GetMapping("/list")
public R<List<Long>> getAllGroupIds()
{