fix:统一git调用格式
This commit is contained in:
parent
dee7f20935
commit
b9a4eefa4b
|
|
@ -98,9 +98,9 @@ public class AirlineFileGroupController extends BaseController {
|
|||
*/
|
||||
// @RequiresPermissions("airline:group:remove")
|
||||
@Log(title = "删除分组", businessType = BusinessType.DELETE)
|
||||
@DeleteMapping
|
||||
@DeleteMapping("/{groupId}")
|
||||
@Operation(summary = "删除分组")
|
||||
public AjaxResult removeByQueryParam(@RequestParam("groupId") Long groupId) {
|
||||
public AjaxResult removeByQueryParam(@PathVariable("groupId") Long groupId) {
|
||||
return toAjax(iAirlineFileGroupService.deletegroupById(SecurityUtils.getUserId(), groupId));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue