package com.jsh.erp.datasource.mappers; import com.jsh.erp.datasource.entities.Role; import com.jsh.erp.datasource.entities.RoleExample; import java.util.List; import org.apache.ibatis.annotations.Param; public interface RoleMapper { long countByExample(RoleExample example); int deleteByExample(RoleExample example); int deleteByPrimaryKey(Long id); int insert(Role record); int insertSelective(Role record); List selectByExample(RoleExample example); Role selectByPrimaryKey(Long id); int updateByExampleSelective(@Param("record") Role record, @Param("example") RoleExample example); int updateByExample(@Param("record") Role record, @Param("example") RoleExample example); int updateByPrimaryKeySelective(Role record); int updateByPrimaryKey(Role record); }