All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.rexsheng.springboot.faster.system.role.application.RoleService Maven / Gradle / Ivy

The newest version!
package com.github.rexsheng.springboot.faster.system.role.application;

import com.github.rexsheng.springboot.faster.common.domain.PagedList;
import com.github.rexsheng.springboot.faster.system.post.application.dto.*;
import com.github.rexsheng.springboot.faster.system.role.application.dto.*;

import java.util.List;

public interface RoleService {

    void add(AddRoleRequest request);

    List queryList(QueryRoleRequest request);

    PagedList pagedList(QueryRoleRequest request);

    RoleDetailResponse get(Integer id);

    void update(UpdateRoleRequest request);

    void updateStatus(List request);

    void delete(List ids);

    Boolean validCode(ValidateRoleCodeRequest request);

    void changeAuth(ChangeRoleAuthRequest request);

    List getAuths(Integer id);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy