11 lines
176 B
Java
11 lines
176 B
Java
package io.dataease.ext;
|
|
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
public interface ExtPanelDesignMapper {
|
|
|
|
void deleteByPanelId(@Param("panelId") String panelId);
|
|
|
|
}
|