ludc
2023-12-26 ff15fb3ec4e29dc0ddcddfda711209831fd2ac59
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.vci.ubcs.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.vci.ubcs.system.entity.ClassifyAuth;
import com.vci.ubcs.system.vo.ClassifyAuthVO;
import org.springblade.core.tool.api.R;
 
import java.util.List;
 
/**
 * 分类授权
 * @author ludc
 * @date 2023/12/25 15:34
 */
public interface IClassifyAuthService extends IService<ClassifyAuth> {
 
    /**
     * 分类授权保存接口
     * @param classifyAuthList
     * @return
     */
    R submit(List<ClassifyAuth> classifyAuthList);
 
    /**
     * 获取分类授权集合
     * @param classifyAuthVO
     * @return
     */
    List<ClassifyAuthVO> getClassifyAuthList(ClassifyAuthVO classifyAuthVO);
 
 
}