Subversion Repositories SmartDukaan

Rev

Rev 32886 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26014 amit.gupta 1
package com.spice.profitmandi.dao.repository.auth;
2
 
3
import java.util.List;
4
 
5
import org.springframework.stereotype.Repository;
6
 
7
import com.spice.profitmandi.dao.entity.auth.Menu;
8
 
9
@Repository
10
public interface MenuRepository {
11
	List<Menu> selectAllByIds(List<Integer> menuIds);
12
	Menu selectById(int menuId);
13
	List<Menu> selectAll();
14
}