View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2012-3-5 下午04:09:43
4    */
5   package gboat2.web.business;
6   
7   import gboat2.base.core.service.IBaseService;
8   import gboat2.web.model.DataLevel;
9   
10  import java.util.List;
11  
12  
13  /**
14   * 
15   * @author wangsr
16   * @since jdk1.6
17   * @date 2012-3-5
18   *  
19   */
20  
21  public interface IDataLevelBusiness extends IBaseService {
22  	/**
23  	 * 当前系统的datalevel
24  	 * @author wangsr
25  	 * @return 所有的数据级别
26  	 */
27  	public List<DataLevel> findAllDataLevel();
28  }