GroupDAO.java 802 Bytes
Newer Older
罗绍泽 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
package com.jw.app.business.group;

import java.util.List;
import java.util.Map;

import com.gaowj.business.exception.BusinessException;

public interface GroupDAO {
    List<Map<String, Object>> listAllModule(Map<String, Object> query) throws BusinessException;
	
	List<Map<String, Object>>  listGroupModule(Map<String, Object> query) throws BusinessException;
	
	List<Map<String, Object>> listAllModuleType() throws BusinessException;
	
    List<Map<String, Object>> listAllUser(Map<String, Object> query) throws BusinessException;
	
	List<Map<String, Object>>  listGroupUser(Map<String, Object> query) throws BusinessException;
	
	List<Map<String,Object>> listAllUnit() throws BusinessException;
	
	List<Map<String, Object>> listAllUserGLuser(Map<String, Object> query) throws BusinessException;

}