This commit is contained in:
mashuai 2024-10-24 13:53:24 +08:00
parent 95decb8895
commit bf47ea3891
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public class BmUnitController extends BaseController
@RequiresPermissions("basic:unit:remove")
@SysLog(title = "往来单位管理", businessType = OperaType.DELETE, logType = 1,module = "仓储管理->删除往来单位管理")
@DeleteMapping("/{unitId}")
public AjaxResult remove(@PathVariable Long unitId)
public AjaxResult remove(@PathVariable("unitId") Long unitId)
{
return bmUnitService.deleteBmUnitByUnitId(unitId);
}