package com.thhy.usercore.modules.sys.sysbutton.mapper;
|
|
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 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 SysButtonMapper {
|
|
SysButton queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<SysButton> findList(SysButton sysbutton);
|
|
List<MenuButtonListVo> menuButtonList(ButtonDto buttonDto);
|
|
List<ButtonVo> RoleButtonList(ButtonDto buttonDto);
|
|
List<SysButton> findAll();
|
|
void insert(SysButton sysbutton);
|
|
void update(SysButton sysbutton);
|
|
int deleteById(Serializable id);
|
}
|