1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| package com.ruoyi.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import com.ruoyi.domain.ZAuthority;
|
| import java.util.List;
|
| /**
| * @Author Jinquan_Ou
| * @Description
| * @Date 2023-07-15 13:21
| * @Version 1.0.0
| **/
| public interface ZAuthorityService extends IService<ZAuthority> {
| List<ZAuthority> getAuthority();
| }
|
|