ModuleService.java 256 Bytes
package com.bsth.service;

import java.util.List;

import com.bsth.entity.sys.Module;

public interface ModuleService extends BaseService<Module, Integer>{
	
	public List<Module> findByGroupType(String group);

	public List<Module> findByCurrentUser();

}