Blame | Last modification | View Log | RSS feed
package com.spice.profitmandi.dao.repository;import java.util.List;import org.springframework.stereotype.Repository;import com.spice.profitmandi.common.exception.ProfitMandiBusinessException;import com.spice.profitmandi.dao.entity.RoleApi;@Repositorypublic interface RoleApiRepository {public void persist(RoleApi roleApi)throws ProfitMandiBusinessException;public List<RoleApi> selectByRoleId(int roleId);public void deleteByRoleAndApiId(int roleId, int apiId) throws ProfitMandiBusinessException;}