package org.jeecg.modules.doc.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.common.doc.vo.DeptPathPermissionVo;
|
import org.jeecg.modules.doc.entity.DeptPathPermission;
|
|
import java.util.List;
|
|
/**
|
* @Description: dept_path_permission
|
* @Author: jeecg-boot
|
* @Date: 2022-08-04
|
* @Version: V1.0
|
*/
|
public interface IDeptPathPermissionService extends IService<DeptPathPermission> {
|
|
List<DeptPathPermissionVo> queryAll();
|
}
|