Subversion Repositories SmartDukaan

Rev

Rev 32886 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 32886 Rev 33247
Line 1... Line 1...
1
package com.spice.profitmandi.dao.repository.auth;
1
package com.spice.profitmandi.dao.repository.auth;
2
 
2
 
-
 
3
import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;
3
import java.util.List;
4
import com.spice.profitmandi.dao.entity.auth.Menu;
4
 
-
 
5
import org.springframework.stereotype.Repository;
5
import org.springframework.stereotype.Repository;
6
 
6
 
7
import com.spice.profitmandi.dao.entity.auth.Menu;
7
import java.util.List;
8
 
8
 
9
@Repository
9
@Repository
10
public interface MenuRepository {
10
public interface MenuRepository {
11
	List<Menu> selectAllByIds(List<Integer> menuIds);
11
    List<Menu> selectAllByIds(List<Integer> menuIds) throws ProfitMandiBusinessException;
-
 
12
 
12
	List<Menu> selectAllBySequencesId(List<Integer> menuSequences);
13
    List<Menu> selectAllBySequencesId(List<Integer> menuSequences) throws ProfitMandiBusinessException;
13
 
14
 
14
	Menu selectById(int menuId);
15
	Menu selectById(int menuId);
15
	List<Menu> selectAll();
16
	List<Menu> selectAll();
16
	List<Menu> selectAllBySequence();
17
	List<Menu> selectAllBySequence();
17
}
18
}