package com.thhy.usercore.modules.sys.pdamenu.mapper; import com.thhy.usercore.modules.sys.pdamenu.entity.PdaMenuRole; import org.springframework.stereotype.Component; import java.io.Serializable; import java.util.List; /** * Mapper 接口 * @author zhang_xiao_bo * @since 2023-06-05 09:54:08 */ @Component public interface PdaMenuRoleMapper { PdaMenuRole queryById(Serializable id); Integer queryVersionById(Serializable id); List findList(PdaMenuRole pdamenurole); List findAll(); void insert(PdaMenuRole pdamenurole); void update(PdaMenuRole pdamenurole); void deletelogic(Serializable id); void deleteById(Serializable id); void deleteByRoleId(String roleId); }