Subversion Repositories SmartDukaan

Rev

Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.dao.repository.auth;

import java.util.List;

import org.springframework.stereotype.Repository;

import com.spice.profitmandi.dao.entity.auth.Menu;

@Repository
public interface MenuRepository {
        List<Menu> selectAllByIds(List<Integer> menuIds);
        Menu selectById(int menuId);
        List<Menu> selectAll();
}