package com.thhy.usercore.modules.sys.sysbutton.mapper;
|
|
import com.thhy.usercore.modules.sys.sysbutton.entity.SysRoleButton;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* <p>
|
* Mapper 接口
|
* </p>
|
*
|
* @author zhang_xiao_bo
|
* @since 2022-04-01
|
*/
|
@Component
|
public interface SysRoleButtonMapper {
|
|
SysRoleButton queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<SysRoleButton> findList(SysRoleButton sysrolebutton);
|
|
List<SysRoleButton> findAll();
|
|
int insert(SysRoleButton sysrolebutton);
|
|
int update(SysRoleButton sysrolebutton);
|
|
void deleteByRoleId(String roleId);
|
}
|