package io.dataease.ext; import io.dataease.dto.PanelGroupExtendDataDTO; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ExtPanelGroupExtendDataMapper { void savePanelExtendData(@Param("records") List records); void copyExtendData(@Param("sourceViewId")String sourceViewId,@Param("newViewId")String newViewId,@Param("newPanelId")String newPanelId); void copyWithCopyId(@Param("copyId")String copyId); }