Blame view

src/com/fh/service/system/menu/MenuManager.java 1.2 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
  package com.fh.service.system.menu;
  
  import java.util.List;
  
  import com.fh.entity.system.Menu;
  import com.fh.util.PageData;
  
ad5081d3   孙向锦   初始化项目
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  public interface MenuManager {
  
  	/**
  	 * @param parentId
  	 * @return
  	 * @throws Exception
  	 */
  	public List<Menu> listSubMenuByParentId(String parentId)throws Exception;
  	
  	/**
  	 * @param pd
  	 * @return
  	 * @throws Exception
  	 */
  	public PageData getMenuById(PageData pd) throws Exception;
  	
  	/**
  	 * @param menu
  	 * @throws Exception
  	 */
  	public void saveMenu(Menu menu) throws Exception;
  	
  	/**
  	 * @param pd
  	 * @return
  	 * @throws Exception
  	 */
  	public PageData findMaxId(PageData pd) throws Exception;
  	
  	/**
  	 * @param MENU_ID
  	 * @throws Exception
  	 */
  	public void deleteMenuById(String MENU_ID) throws Exception;
  	
  	/**
  	 * @param menu
  	 * @throws Exception
  	 */
  	public void edit(Menu menu) throws Exception;
  	
  	/**
  	 * @param pd
  	 * @return
  	 * @throws Exception
  	 */
  	public PageData editicon(PageData pd) throws Exception;
  	
  	/**
  	 * @param MENU_ID
  	 * @return
  	 * @throws Exception
  	 */
  	public List<Menu> listAllMenu(String MENU_ID) throws Exception;
  	
  	/**
  	 * @param MENU_ID
  	 * @return
  	 * @throws Exception
  	 */
  	public List<Menu> listAllMenuQx(String MENU_ID) throws Exception;
  }