| | |
| | | */ |
| | | public interface BaseRoleDao { |
| | | |
| | | public BaseRole getBaseRole(String id) throws DataAccessException; |
| | | public BaseRole getBaseRole(Long id) throws DataAccessException; |
| | | public List<BaseRole> getBaseRoleList(Map params) throws DataAccessException; |
| | | public int getBaseRoleTotalCount(Map params) throws DataAccessException; |
| | | |
| | | public void insertBaseRole(BaseRole baseRole) throws DataAccessException; |
| | | public int updateBaseRole(BaseRole baseRole) throws DataAccessException; |
| | | public int deleteBaseRoles(List<String> ids) throws DataAccessException; |
| | | public int updateBaseRoleInfo(BaseRole baseRole); |
| | | public int deleteBaseRoles(List<Long> ids) throws DataAccessException; |
| | | |
| | | BaseRole getBaseRoleByUser(Long id); |
| | | } |