fix:物料产品分类编辑权限名称与系统同步

This commit is contained in:
zhangxuanming 2024-12-20 18:19:16 +08:00
parent aa8291b4e9
commit 12c061bf36

View File

@ -104,7 +104,7 @@ public class ItemTypeController extends BaseController {
return AjaxResult.success(iItemTypeService.insertItemType(itemType)); return AjaxResult.success(iItemTypeService.insertItemType(itemType));
} }
@PreAuthorize("@ss.hasPermi('mes:md:itemtype:update')") @PreAuthorize("@ss.hasPermi('mes:md:itemtype:edit')")
@Log(title = "更新物料产品分类",businessType = BusinessType.UPDATE) @Log(title = "更新物料产品分类",businessType = BusinessType.UPDATE)
@PutMapping @PutMapping
public AjaxResult update(@Validated @RequestBody ItemType itemType){ public AjaxResult update(@Validated @RequestBody ItemType itemType){