Rev 32886 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository.auth;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.auth.Menu;import org.springframework.stereotype.Repository;import java.util.List;@Repositorypublic interface MenuRepository {List<Menu> selectAllByIds(List<Integer> menuIds) throws ProfitMandiBusinessException;List<Menu> selectAllBySequencesId(List<Integer> menuSequences) throws ProfitMandiBusinessException;Menu selectById(int menuId);List<Menu> selectAll();List<Menu> selectAllBySequence();}