View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2012-3-16 下午01:32:59
4    */
5   package gboat2.web.business;
6   
7   import gboat2.base.core.service.IBaseService;
8   
9   
10  
11  /**
12   * 
13   * 当前系统当前角色是否有widget权限
14   * @author zhangxj-a
15   * @since jdk1.6
16   * @date 2013-3-15
17   *  
18   */
19  public interface IWidgetAuthorityConfigBusiness extends IBaseService {
20  	
21  	public Boolean hasAuthorityOfCurrentWidget(String systemId, String roleId,String currentWidgetName);
22  	
23  }