package cn.songjhh.project.mapper.user; import cn.songjhh.project.po.user.Permission; import cn.songjhh.project.po.user.PermissionExample; import org.apache.ibatis.annotations.Param; import java.util.List; public interface PermissionMapper { int countByExample(PermissionExample example); int deleteByExample(PermissionExample example); int deleteByPrimaryKey(Integer id); int insert(Permission record); int insertSelective(Permission record); List<Permission> selectByExample(PermissionExample example); Permission selectByPrimaryKey(Integer id); int updateByExampleSelective(@Param("record") Permission record, @Param("example") PermissionExample example); int updateByExample(@Param("record") Permission record, @Param("example") PermissionExample example); int updateByPrimaryKeySelective(Permission record); int updateByPrimaryKey(Permission record); }