de/backend/src/main/java/io/dataease/ext/ExtPanelGroupExtendDataMapper.java
2022-04-15 16:08:33 +08:00

15 lines
481 B
Java

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<PanelGroupExtendDataDTO> records);
void copyExtendData(@Param("sourceViewId")String sourceViewId,@Param("newViewId")String newViewId,@Param("newPanelId")String newPanelId);
void copyWithCopyId(@Param("copyId")String copyId);
}