|
@@ -26,10 +26,12 @@ public interface SysPlatformMapper extends CrudMapper<SysPlatform> {
|
|
|
@Param("size") Integer size,
|
|
|
@Param("id") Integer id);
|
|
|
|
|
|
- List<SysMenu> getMenuIdListOne(Long[] menuIds, String menuType);
|
|
|
+ List<SysMenu> getMenuIdListOne(@Param("menuIds") Long[] menuIds,
|
|
|
+ @Param("menuType") String menuType);
|
|
|
|
|
|
- int deletePlatformMenuBy(Long platformId);
|
|
|
+ int deletePlatformMenuBy(@Param("platformId") Long platformId);
|
|
|
|
|
|
|
|
|
- List<SysPlatformMenu> getMenuListOne(Long platformId, String menuType);
|
|
|
+ List<SysPlatformMenu> getMenuListOne(@Param("platformId") Long platformId,
|
|
|
+ @Param("menuType") String menuType);
|
|
|
}
|