Browse Source

根据数据库表修改对相关功能、类做出调整

songxinlu 4 năm trước cách đây
mục cha
commit
da764c60e0

+ 6 - 6
dblayer-mbg/src/main/java/com/lantone/dblayermbg/mapper/RoleServiceMenuMapper.java

@@ -2,27 +2,27 @@ package com.lantone.dblayermbg.mapper;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.lantone.common.dto.MenuDTO;
-import com.lantone.common.vo.RoleServiceMenuVo;
-import com.lantone.dblayermbg.entity.RoleServiceMenu;
+import com.lantone.common.vo.RoleSoftwareMenuVo;
+import com.lantone.dblayermbg.entity.RoleSoftwareMenu;
 import org.apache.ibatis.annotations.Param;
 
 import java.util.List;
 
 /**
  * <p>
- * 角色系统功能菜单关联表 Mapper 接口
+ * 角色系统服务与功能菜单关联表 Mapper 接口
  * </p>
  */
-public interface RoleServiceMenuMapper extends BaseMapper<RoleServiceMenu> {
+public interface RoleSoftwareMenuMapper extends BaseMapper<RoleSoftwareMenu> {
     /**
      * @Method getMenus
      * @Author songxl
      * @Version  1.0
      * @Description普通用户获取对应系统的菜单列表
-     * @param roleServiceMenuVo
+     * @param roleSoftwareMenuVo
      * @Return java.util.List<com.lantone.common.dto.MenuDTO>
      * @Date 2021/7/28
      */
-    List<MenuDTO> getMenus(@Param("roleServiceMenuVo") RoleServiceMenuVo roleServiceMenuVo);
+    List<MenuDTO> getMenus(@Param("roleSoftwareMenuVo") RoleSoftwareMenuVo roleSoftwareMenuVo);
 }