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