Commit c242388e by guojuxing

删除操作项、权限项关联数据接口注入修复

parent 9adf4287
......@@ -3,6 +3,7 @@ package com.gic.auth.service.impl;
import com.gic.auth.dao.mapper.TabSysMenuItemMapper;
import com.gic.auth.dto.MenuItemDTO;
import com.gic.auth.service.MenuItemService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
......@@ -10,6 +11,7 @@ import java.util.List;
@Service("menuItemService")
public class MenuItemServiceImpl implements MenuItemService{
@Autowired
private TabSysMenuItemMapper tabSysMenuItemMapper;
@Transactional(rollbackFor = Exception.class)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment