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; /** *

* 服务类 *

* * @author zhang_xiao_bo * @since 2022-04-01 */ public interface ISysButtonService { SysButton get(Serializable id); List findList(SysButton sysButton); List RoleButtonList(ButtonDto buttonDto); List MenuButtonList(ButtonDto buttonDto); SysButton addButton(SysButton sysButton); int delete(Serializable id); }