package com.nanometer.smartlab.dao;
|
|
import com.nanometer.smartlab.entity.BaseRolePage;
|
import org.springframework.dao.DataAccessException;
|
|
import java.util.List;
|
import java.util.Map;
|
|
/**
|
* Created by johnny on 17/11/18.
|
*/
|
public interface BaseRolePageDao {
|
|
public BaseRolePage getBaseRolePage(String id) throws DataAccessException;
|
public List<BaseRolePage> getBaseRolePageList(Map params) throws DataAccessException;
|
|
public void insertBaseRolePage(BaseRolePage baseRolePage) throws DataAccessException;
|
public int deleteBaseRolePage(Map params) throws DataAccessException;
|
}
|