张晓波
2023-09-19 164694c47c35d6654df69b533e8dbf8b5423efc5
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.thhy.usercore.modules.sys.sysbutton.service;
 
import com.thhy.usercore.modules.sys.sysbutton.entity.ButtonDto;
import com.thhy.usercore.modules.sys.sysbutton.entity.ButtonVo;
import com.thhy.usercore.modules.sys.sysbutton.entity.SysButton;
import com.thhy.usercore.modules.sys.sysmenubutton.entity.MenuButtonListVo;
 
import java.io.Serializable;
import java.util.List;
 
/**
 * <p>
 *  服务类
 * </p>
 *
 * @author zhang_xiao_bo
 * @since 2022-04-01
 */
public interface ISysButtonService {
 
    SysButton get(Serializable id);
 
    List<SysButton> findList(SysButton sysButton);
 
    List<ButtonVo> RoleButtonList(ButtonDto buttonDto);
 
    List<MenuButtonListVo> MenuButtonList(ButtonDto buttonDto);
 
    SysButton addButton(SysButton sysButton);
 
    int delete(Serializable id);
}