dataease-dm/backend/src/main/java/io/dataease/base/mapper/PanelLinkJumpInfoMapper.java

30 lines
1011 B
Java

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<PanelLinkJumpInfo> 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);
}