package cn.com.goldenwater.dcproj.service; import cn.com.goldenwater.core.service.CrudService; import cn.com.goldenwater.dcproj.model.AttRoleBase; import cn.com.goldenwater.dcproj.param.AttRoleBaseParam; import cn.com.goldenwater.dcproj.param.RolePrivParam; import com.github.pagehelper.PageInfo; import java.util.ArrayList; import java.util.List; /** * @author lune * @date 2019-2-19 */ public interface AttRoleBaseService extends CrudService { // ------------------------- 自定方法 ------------------------- void insertRole(AttRoleBase attRoleBase, ArrayList rolePrivParams, RolePrivParam param); void updateRole(AttRoleBase attRoleBase, ArrayList rolePrivParams, RolePrivParam param); List getRoleByUserId(String guid); }