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);
|
}
|