xiaoyong931011
2022-05-26 ad2c2d53d756c8c9caa6e043c1868cfdf9736b9d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.xcong.farmer.cms.modules.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.xcong.farmer.cms.common.response.Result;
import com.xcong.farmer.cms.modules.system.dto.AdminAddMenuDto;
import com.xcong.farmer.cms.modules.system.dto.AdminMenuDto;
import com.xcong.farmer.cms.modules.system.dto.AdminUpdateMenuDto;
import com.xcong.farmer.cms.modules.system.entity.MenuEntity;
 
public interface IMenuService extends IService<MenuEntity> {
 
    Result getMenuInPage(AdminMenuDto adminMenuDto);
 
    Result addMenu(AdminAddMenuDto adminAddMenuDto);
 
    Result deleteMenu(Long id);
 
    Result seeMenuInfo(Long id);
 
    Result updateMenu(AdminUpdateMenuDto adminUpdateMenuDto);
}