package com.thhy.usercore.modules.sys.pdamenu.mapper;
|
|
import com.thhy.usercore.modules.sys.pdamenu.entity.PdaMenu;
|
import com.thhy.usercore.modules.sys.pdamenu.entity.PdaMenuSelectVo;
|
import org.springframework.stereotype.Component;
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* Mapper 接口
|
* @author zhang_xiao_bo
|
* @since 2023-06-05 09:51:46
|
*/
|
@Component
|
public interface PdaMenuMapper {
|
|
|
PdaMenu queryById(Serializable id);
|
|
Integer queryVersionById(Serializable id);
|
|
List<PdaMenu> findList(PdaMenu pdamenu);
|
|
List<PdaMenu> findAll();
|
|
void insert(PdaMenu pdamenu);
|
|
void update(PdaMenu pdamenu);
|
|
void deletelogic(Serializable id);
|
|
void deleteById(Serializable id);
|
|
List<PdaMenuSelectVo> selectList(String roleId);
|
}
|