package com.thhy.usercore.modules.sys.sysbutton.service; import com.thhy.usercore.modules.sys.sysbutton.entity.SysRoleButton; import java.io.Serializable; import java.util.List; /** *

* 服务类 *

* * @author zhang_xiao_bo * @since 2022-04-01 */ public interface ISysRoleButtonService { SysRoleButton get(Serializable id); List findList(SysRoleButton sysRoleButton); int insert(SysRoleButton sysRoleButton); int update(SysRoleButton sysRoleButton); }