Subversion Repositories SmartDukaan

Rev

Rev 26014 | 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);
        List<Menu> selectAllBySequencesId(List<Integer> menuSequences);

        Menu selectById(int menuId);
        List<Menu> selectAll();
        List<Menu> selectAllBySequence();
}