package io.dataease.base.mapper; import io.dataease.base.domain.SysRole; import io.dataease.base.domain.SysRoleExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface SysRoleMapper { long countByExample(SysRoleExample example); int deleteByExample(SysRoleExample example); int deleteByPrimaryKey(Long roleId); int insert(SysRole record); int insertSelective(SysRole record); List selectByExample(SysRoleExample example); SysRole selectByPrimaryKey(Long roleId); int updateByExampleSelective(@Param("record") SysRole record, @Param("example") SysRoleExample example); int updateByExample(@Param("record") SysRole record, @Param("example") SysRoleExample example); int updateByPrimaryKeySelective(SysRole record); int updateByPrimaryKey(SysRole record); }